<?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: AR test in SAS Forecasting and Econometrics</title>
    <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/AR-test/m-p/313603#M2058</link>
    <description>&lt;P&gt;I get the same problem with the AR test in PROC PANEL even when my data are all non-missing.&lt;/P&gt;&lt;P&gt;To double check I ran:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc means data = model_testing3 NMISS N;
RUN;	&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;And indeed, all NMISS = 0.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In fact even when&amp;nbsp;I try to remove the missing lags myself (before invoking PROC PANEL) the same error of "missing values" occurs. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I really hope the error isn't because PROC PANEL generates missing values when it takes first differences and takes the "appropriate lags" of&amp;nbsp;&lt;STRONG&gt;depvar&lt;/STRONG&gt;... but I don't see what else it could be.&lt;/P&gt;</description>
    <pubDate>Tue, 22 Nov 2016 21:23:31 GMT</pubDate>
    <dc:creator>TBeans</dc:creator>
    <dc:date>2016-11-22T21:23:31Z</dc:date>
    <item>
      <title>AR test</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/AR-test/m-p/312252#M2042</link>
      <description>&lt;P&gt;Dear all,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I get an error messge as follows:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The ARTEST test cannot be calculated for one or more lags due to missing values in the response and/or explanatory variable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;May I know how can I overcome this problem?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Nov 2016 09:30:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/AR-test/m-p/312252#M2042</guid>
      <dc:creator>mspak</dc:creator>
      <dc:date>2016-11-17T09:30:47Z</dc:date>
    </item>
    <item>
      <title>Re: AR test</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/AR-test/m-p/312266#M2043</link>
      <description>&lt;P&gt;Which PROC are you using ?&lt;/P&gt;
&lt;P&gt;Maybe you should use PROC EXPAND to interpolate these missing value .&lt;/P&gt;</description>
      <pubDate>Thu, 17 Nov 2016 10:25:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/AR-test/m-p/312266#M2043</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-11-17T10:25:35Z</dc:date>
    </item>
    <item>
      <title>Re: AR test</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/AR-test/m-p/312267#M2044</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc panel data=Ad5;&lt;BR /&gt;instruments depvar ;&lt;BR /&gt;model AD = LAGXAD MB SGWTH CASH_AT1 CHG_WC YR01 YR02 YR03 YR04&lt;BR /&gt;YR05 YR06 YR07 YR08 YR09 YR10-YR15 IND01 IND04 IND05 IND06 IND07 IND08 IND09 IND10&lt;BR /&gt;/ gmm twostep maxband=5 artest = 2;&lt;BR /&gt;id gvkey fyear;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It is a AR test in proc panel.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Nov 2016 10:27:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/AR-test/m-p/312267#M2044</guid>
      <dc:creator>mspak</dc:creator>
      <dc:date>2016-11-17T10:27:25Z</dc:date>
    </item>
    <item>
      <title>Re: AR test</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/AR-test/m-p/313603#M2058</link>
      <description>&lt;P&gt;I get the same problem with the AR test in PROC PANEL even when my data are all non-missing.&lt;/P&gt;&lt;P&gt;To double check I ran:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc means data = model_testing3 NMISS N;
RUN;	&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;And indeed, all NMISS = 0.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In fact even when&amp;nbsp;I try to remove the missing lags myself (before invoking PROC PANEL) the same error of "missing values" occurs. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I really hope the error isn't because PROC PANEL generates missing values when it takes first differences and takes the "appropriate lags" of&amp;nbsp;&lt;STRONG&gt;depvar&lt;/STRONG&gt;... but I don't see what else it could be.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Nov 2016 21:23:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/AR-test/m-p/313603#M2058</guid>
      <dc:creator>TBeans</dc:creator>
      <dc:date>2016-11-22T21:23:31Z</dc:date>
    </item>
  </channel>
</rss>

