<?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 Re: time series forecasting with hourly data in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/time-series-forecasting-with-hourly-data/m-p/389547#M63972</link>
    <description>&lt;P&gt;Thank you both for looking into this, and for the explanation. The only problem with converting to the "best" format is that, for some reason, when you try to back-convert from the number string to the date and /or time (for when you forecast out), the date and time are incorrect! For instance, when you forecast out 1000 seconds using this dataset and then convert the "ahead" times back to the time format, the year is 1835 instead of 2021. And Jim is right: the most recent "second" value is 3693752220, meaning that the clock started 117 years ago, so 1904. I will ask technical support is there is a work-around that doesn't involve using number of seconds since 1904 in my calculations.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 31 May 2021 17:18:12 GMT</pubDate>
    <dc:creator>abmayfield</dc:creator>
    <dc:date>2021-05-31T17:18:12Z</dc:date>
    <item>
      <title>time series forecasting with hourly data</title>
      <link>https://community.jmp.com/t5/Discussions/time-series-forecasting-with-hourly-data/m-p/388912#M63904</link>
      <description>&lt;P&gt;I just saw a very interesting webinar by Jian Cao on time series forecasting, so I thought I'd give it a try with a test dataset in which I logged temperature every three hours for several years. However, when I enter the date and time into the time stamp I get an error message: unsupported time format. I tried every single format under the "time" input options for continuous variables. Certainly there is a way for JMP Pro 16 to interpret hourly daily across multiple days, right?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 00:34:05 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/time-series-forecasting-with-hourly-data/m-p/388912#M63904</guid>
      <dc:creator>abmayfield</dc:creator>
      <dc:date>2023-06-09T00:34:05Z</dc:date>
    </item>
    <item>
      <title>Re: time series forecasting with hourly data</title>
      <link>https://community.jmp.com/t5/Discussions/time-series-forecasting-with-hourly-data/m-p/389014#M63908</link>
      <description>&lt;P&gt;Hi Anderson,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It seems that the Time Series Forecast platform needs either a date or a simple numeric timestamp. I think it is not working with your time column because it is a date-time format.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I converted your timestamp to numeric (Format = Best) and the Time Series Forecast now accepts it (attached). I think this numeric timestamp is seconds since 1 Jan 1970 or something like that.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am not sure why Time Series Forecast does not accept your date-time format. It might be a good idea to send this one to JMP Technical Support (support@jmp.com) so they can investigate and potentially log as a defect.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope that helps,&lt;/P&gt;
&lt;P&gt;Phil&lt;/P&gt;</description>
      <pubDate>Fri, 28 May 2021 09:59:13 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/time-series-forecasting-with-hourly-data/m-p/389014#M63908</guid>
      <dc:creator>Phil_Kay</dc:creator>
      <dc:date>2021-05-28T09:59:13Z</dc:date>
    </item>
    <item>
      <title>Re: time series forecasting with hourly data</title>
      <link>https://community.jmp.com/t5/Discussions/time-series-forecasting-with-hourly-data/m-p/389040#M63912</link>
      <description>&lt;P&gt;Just to be factually correct, the origination time( epoch ) for JMP date time values is 12 AM, January 1, 1904.&amp;nbsp; The best explanation I have read, comes from Pat Lavezza on the LabVIEW forum.&amp;nbsp; LabVIEW uses the same epoch as JMP, with the origins going back to Apple computers&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;"Here's the deal with January 1, 1904. Most (all?) operating systems store time as the number of seconds (&amp;nbsp;or microseconds, etc.) since a certain time. This time is call the epoch. The number of seconds that the Mac could store covered about 130 years. The programmers wanted the system to be able to cover the birthdays of most users, so the epoch needed to start in the early 20th century. So why not start at January 1, 1900?&lt;/P&gt;
&lt;P&gt;The Macintosh designers needed to squish a lot of code into a very small amount of ROM/RAM. They were looking for any kind of tweak that could save them some room. The code to turn the number of seconds since the epoch into a date (like March 29, 1973) needs to know how many days there are in a year. Which means you need code to determine if a year is a leap year.&lt;/P&gt;
&lt;P&gt;A year is a leap year if it is a multiple of 4&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;unless it is a multiple of 100&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;U&gt;except if it is also a multiple of 400.&lt;/U&gt;&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;So, 1900&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;wasn't&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;a leap year (multiple of 100), but 2000 was (multiple of 100, but also a multiple of 400). By&amp;nbsp;avoiding the year 1900,&amp;nbsp;the Mac designers never had to worry about the 100/400 part of the leap year rule (because the 130 year span would only cover 2000 which was a leap year). If the year was a multiple of 4, it was a leap year.&lt;/P&gt;
&lt;P&gt;So why not 1901 or 1902 or 1903? By starting with a leap year they didn't need an 'offset', just another way to save a little bit of space.&lt;/P&gt;
&lt;P&gt;And since LabVIEW started on the Mac, it inherited some of those quirks."&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;FYI, SAS epoch is January 1, 1960&lt;/P&gt;</description>
      <pubDate>Fri, 28 May 2021 13:10:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/time-series-forecasting-with-hourly-data/m-p/389040#M63912</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2021-05-28T13:10:11Z</dc:date>
    </item>
    <item>
      <title>Re: time series forecasting with hourly data</title>
      <link>https://community.jmp.com/t5/Discussions/time-series-forecasting-with-hourly-data/m-p/389065#M63916</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2687"&gt;@txnelson&lt;/a&gt;&amp;nbsp;Who knew? Thanks for sharing this little bit of history. I think "Jeopardy" writers/producers could create an entire category out of the nuggets in that explanation.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 May 2021 13:53:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/time-series-forecasting-with-hourly-data/m-p/389065#M63916</guid>
      <dc:creator>P_Bartell</dc:creator>
      <dc:date>2021-05-28T13:53:20Z</dc:date>
    </item>
    <item>
      <title>Re: time series forecasting with hourly data</title>
      <link>https://community.jmp.com/t5/Discussions/time-series-forecasting-with-hourly-data/m-p/389380#M63957</link>
      <description>That's an interesting tidbit, thanks Jim.  Of course JMP was originally designed for Mac's, so it makes sense the connection with the Mac.</description>
      <pubDate>Sat, 29 May 2021 12:30:48 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/time-series-forecasting-with-hourly-data/m-p/389380#M63957</guid>
      <dc:creator>statman</dc:creator>
      <dc:date>2021-05-29T12:30:48Z</dc:date>
    </item>
    <item>
      <title>Re: time series forecasting with hourly data</title>
      <link>https://community.jmp.com/t5/Discussions/time-series-forecasting-with-hourly-data/m-p/389547#M63972</link>
      <description>&lt;P&gt;Thank you both for looking into this, and for the explanation. The only problem with converting to the "best" format is that, for some reason, when you try to back-convert from the number string to the date and /or time (for when you forecast out), the date and time are incorrect! For instance, when you forecast out 1000 seconds using this dataset and then convert the "ahead" times back to the time format, the year is 1835 instead of 2021. And Jim is right: the most recent "second" value is 3693752220, meaning that the clock started 117 years ago, so 1904. I will ask technical support is there is a work-around that doesn't involve using number of seconds since 1904 in my calculations.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 31 May 2021 17:18:12 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/time-series-forecasting-with-hourly-data/m-p/389547#M63972</guid>
      <dc:creator>abmayfield</dc:creator>
      <dc:date>2021-05-31T17:18:12Z</dc:date>
    </item>
  </channel>
</rss>

