<?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: PROC VARMA in SAS Forecasting and Econometrics</title>
    <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/PROC-VARMA/m-p/798971#M4353</link>
    <description>&lt;P&gt;hello, excuse , I could not implement this formula , Is there a simpler formula .&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;nbsp;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 27 Feb 2022 14:32:54 GMT</pubDate>
    <dc:creator>SystemsasdD2019</dc:creator>
    <dc:date>2022-02-27T14:32:54Z</dc:date>
    <item>
      <title>PROC VARMA</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/PROC-VARMA/m-p/790583#M4316</link>
      <description>&lt;P&gt;Hello , please I work on PROC VARMA&amp;nbsp; , I want to forecast with daily data , from 2020Jun1,2020Jun2, ,,,,, ,&amp;nbsp; &amp;nbsp; &amp;nbsp;2021Dec31. how can I write the format daily data . thanks&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jan 2022 19:57:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/PROC-VARMA/m-p/790583#M4316</guid>
      <dc:creator>SystemsasdD2019</dc:creator>
      <dc:date>2022-01-17T19:57:34Z</dc:date>
    </item>
    <item>
      <title>Re: PROC VARMA</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/PROC-VARMA/m-p/790603#M4317</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/305574"&gt;@SystemsasdD2019&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have moved your question to the "SAS Forecasting and Econometrics" board.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do you mean PROC VARMA&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;X&lt;/STRONG&gt;&lt;/FONT&gt;?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the PROC VARMAX, you need the ID statement with interval=DAY.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC VARMAX options; 
ID variable INTERVAL=value &amp;lt;ALIGN=value&amp;gt;; &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Or do you want to know how to convert a string like '&lt;SPAN&gt;2021Dec31' into a real SAS date?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Koen&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jan 2022 00:08:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/PROC-VARMA/m-p/790603#M4317</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2022-01-18T00:08:40Z</dc:date>
    </item>
    <item>
      <title>Re: PROC VARMA</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/PROC-VARMA/m-p/791961#M4320</link>
      <description>&lt;P&gt;Hello, thanks for answering , I&amp;nbsp;&lt;SPAN&gt;want to know how to convert a string like ,&amp;nbsp; &amp;nbsp; 2021Jun1&amp;nbsp; &amp;nbsp;...&amp;nbsp; ....&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;2021Dec31'into a real SAS date,&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jan 2022 19:07:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/PROC-VARMA/m-p/791961#M4320</guid>
      <dc:creator>SystemsasdD2019</dc:creator>
      <dc:date>2022-01-24T19:07:42Z</dc:date>
    </item>
    <item>
      <title>Re: PROC VARMA</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/PROC-VARMA/m-p/792325#M4321</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _NULL_;
LENGTH DateStringToConvert DateStringToConvert1 $ 9;

DateStringToConvert ='2021Jun1' ; 
DateStringToConvert1=trim(substr(DateStringToConvert,8,2))!!substr(DateStringToConvert,5,3)!!substr(DateStringToConvert,1,4);
put DateStringToConvert1=;
RealSASdate=input(DateStringToConvert1,date9.);
put RealSASdate=;
put RealSASdate= date9.;

DateStringToConvert='2021Dec31';
DateStringToConvert1=trim(substr(DateStringToConvert,8,2))!!substr(DateStringToConvert,5,3)!!substr(DateStringToConvert,1,4);
put DateStringToConvert1=;
RealSASdate=input(DateStringToConvert1,date9.);
put RealSASdate=;
put RealSASdate= date9.;

run;
/* end of program */&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jan 2022 21:09:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/PROC-VARMA/m-p/792325#M4321</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2022-01-25T21:09:54Z</dc:date>
    </item>
    <item>
      <title>Re: PROC VARMA</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/PROC-VARMA/m-p/798971#M4353</link>
      <description>&lt;P&gt;hello, excuse , I could not implement this formula , Is there a simpler formula .&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;nbsp;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 27 Feb 2022 14:32:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/PROC-VARMA/m-p/798971#M4353</guid>
      <dc:creator>SystemsasdD2019</dc:creator>
      <dc:date>2022-02-27T14:32:54Z</dc:date>
    </item>
    <item>
      <title>Re: PROC VARMA</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/PROC-VARMA/m-p/798976#M4355</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Using PROC FORMAT and a picture statement, it is really easy to create ANY format for a date.&lt;BR /&gt;But it is more difficult to create any &lt;U&gt;&lt;STRONG&gt;IN&lt;/STRONG&gt;&lt;/U&gt;format for a date.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I will have a look in the coming week (workdays).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Sun, 27 Feb 2022 15:14:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/PROC-VARMA/m-p/798976#M4355</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2022-02-27T15:14:03Z</dc:date>
    </item>
    <item>
      <title>Re: PROC VARMA</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/PROC-VARMA/m-p/801159#M4370</link>
      <description>&lt;P&gt;&lt;SPAN&gt;hello, excuse , can you show me how&amp;nbsp;Using implement PROC FORMAT and a picture statement, with thanks&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Mar 2022 18:34:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/PROC-VARMA/m-p/801159#M4370</guid>
      <dc:creator>SystemsasdD2019</dc:creator>
      <dc:date>2022-03-09T18:34:33Z</dc:date>
    </item>
    <item>
      <title>Re: PROC VARMA</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/PROC-VARMA/m-p/801162#M4371</link>
      <description>&lt;P&gt;See here for examples :&lt;/P&gt;
&lt;P&gt;Paper 101-27&lt;BR /&gt;Have a Strange DATE? Create your own INFORMAT to Deal with Her&lt;BR /&gt;Venky Chakravarthy, Ann Arbor, MI&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/resources/papers/proceedings/proceedings/sugi27/p101-27.pdf" target="_blank"&gt;https://support.sas.com/resources/papers/proceedings/proceedings/sugi27/p101-27.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Wed, 09 Mar 2022 18:46:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/PROC-VARMA/m-p/801162#M4371</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2022-03-09T18:46:58Z</dc:date>
    </item>
  </channel>
</rss>

