<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Interpolating Time Series Data in Qlikview in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Interpolating-Time-Series-Data-in-Qlikview/m-p/1694610#M594063</link>
    <description>&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;I was wondering if someone out there had a clever solution in qlikview to interpolate timeseries data points. Currently I have a load of&amp;nbsp; sensors that take data at random frequency. I'm trying to think of a way in qlikview that i could interpret these points on a half hourly basis?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Some sensors take readings every minute, whilst others only take 1 reading an hour - making it a bit more tricky.&lt;/P&gt;&lt;P&gt;Attached an example of the dataframe.&lt;/P&gt;&lt;P&gt;Any help or suggestions would be massively appreciated!&lt;/P&gt;</description>
    <pubDate>Sat, 16 Nov 2024 00:49:21 GMT</pubDate>
    <dc:creator>Patreson31</dc:creator>
    <dc:date>2024-11-16T00:49:21Z</dc:date>
    <item>
      <title>Interpolating Time Series Data in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Interpolating-Time-Series-Data-in-Qlikview/m-p/1694610#M594063</link>
      <description>&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;I was wondering if someone out there had a clever solution in qlikview to interpolate timeseries data points. Currently I have a load of&amp;nbsp; sensors that take data at random frequency. I'm trying to think of a way in qlikview that i could interpret these points on a half hourly basis?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Some sensors take readings every minute, whilst others only take 1 reading an hour - making it a bit more tricky.&lt;/P&gt;&lt;P&gt;Attached an example of the dataframe.&lt;/P&gt;&lt;P&gt;Any help or suggestions would be massively appreciated!&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 00:49:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Interpolating-Time-Series-Data-in-Qlikview/m-p/1694610#M594063</guid>
      <dc:creator>Patreson31</dc:creator>
      <dc:date>2024-11-16T00:49:21Z</dc:date>
    </item>
    <item>
      <title>Re: Interpolating Time Series Data in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Interpolating-Time-Series-Data-in-Qlikview/m-p/1694655#M594064</link>
      <description>&lt;P&gt;Can you try this?&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;tab1:
LOAD *
	 ,Date(Floor(Timestamp#(Sensor_Timestamp,'DD/MM/YYYY hh:mm:ss'))) As Sensor_Date
	 ,Time(Frac(Timestamp#(Sensor_Timestamp,'DD/MM/YYYY hh:mm:ss')),'hh:mm:ss') As Sensor_Time
	 ;	 
LOAD * INLINE [
    Sensor, Sensor_Timestamp, Value
    A, 18/04/2020 14:05:37, 0.02
    A, 18/04/2020 14:45:39, 0.02
    A, 18/04/2020 15:05:40, 0.02
    B, 18/04/2020 13:58:43, 38.09
    B, 18/04/2020 14:58:49, 38.09
];

HrsBucket:
LOAD Time((IterNo()-0.5*IterNo())/24,'hh:mm:ss') As Start
	 ,Time(((IterNo()-0.5*(IterNo()-1))/24)-1/86400,'hh:mm:ss') As End
	 ,Time((IterNo()-0.5*IterNo())/24,'hh:mm:ss') As HrsBucket
AutoGenerate 1
While IterNo()&amp;lt;=48
;
//LOAD * INLINE [
//    Start, End, HrsBucket
//    13:30:00, 13:59:59, 13:30
//    14:00:00, 14:29:59, 14:00
//    14:30:00, 14:59:59, 14:30
//    15:00:00, 15:29:59, 15:00
//];

Inner Join IntervalMatch(Sensor_Time)
LOAD Start, End
Resident HrsBucket;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 19 Apr 2020 00:16:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Interpolating-Time-Series-Data-in-Qlikview/m-p/1694655#M594064</guid>
      <dc:creator>Saravanan_Desingh</dc:creator>
      <dc:date>2020-04-19T00:16:38Z</dc:date>
    </item>
  </channel>
</rss>

