<?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 How to Show MAPE(Mean Absolute Percent error) in the Proc Arima model by default in SAS Forecasting and Econometrics</title>
    <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/How-to-Show-MAPE-Mean-Absolute-Percent-error-in-the-Proc-Arima/m-p/651255#M3843</link>
    <description>&lt;P&gt;data arima.js_dispos;&lt;BR /&gt;set arima.js_2005to2018;&lt;BR /&gt;label year="y" cases="c";&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;proc gplot data=arima.js_dispos;&lt;/P&gt;&lt;P&gt;plot cases*year;&lt;BR /&gt;symbol i=spline v=star ci=red cv=bib;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;proc arima data=arima.js_dispos;&lt;BR /&gt;identify var=cases stationarity=(adf=1);&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;data arima.js_dispos_dif2;&lt;BR /&gt;set arima.js_dispos;&lt;BR /&gt;z=cases;&lt;BR /&gt;difz=dif(z);&lt;BR /&gt;difz2=dif(difz);&lt;BR /&gt;label z="n" difz="d1" difz2="d2" ;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;proc gplot data=arima.js_dispos_dif2;&lt;BR /&gt;plot (z difz difz2)*year;&lt;BR /&gt;symbol i=spline v=star ci=red cv=bib;&lt;BR /&gt;run;&lt;BR /&gt;proc arima data=arima.js_dispos_dif2;&lt;BR /&gt;identify var=difz2 stationarity=(adf=1);&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;proc arima data=arima.js_dispos_dif2;&lt;BR /&gt;identify var=difz2 stationarity=(adf=1) WHITENOISE=IGNOREMISS;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;proc arima data=arima.js_dispos_dif2;&lt;BR /&gt;identify var=difz2 minic perror=(8:11);&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;/*test proc arima data=arima.js_dispos_dif2;&lt;BR /&gt;identify var=difz2 minic P=(0:5) Q=(0:5) ;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;---------------test end*/&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;proc arima data=arima.js_dispos_dif2;&lt;BR /&gt;identify var=z(2) nlag=6;&lt;BR /&gt;estimate q=0 p=0 method=ml;&lt;BR /&gt;forecast lead=5 out=arima.outvalue id=year;&lt;BR /&gt;run;&lt;BR /&gt;quit;&lt;/P&gt;</description>
    <pubDate>Thu, 28 May 2020 01:20:28 GMT</pubDate>
    <dc:creator>critiasun</dc:creator>
    <dc:date>2020-05-28T01:20:28Z</dc:date>
    <item>
      <title>How to Show MAPE(Mean Absolute Percent error) in the Proc Arima model by default</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/How-to-Show-MAPE-Mean-Absolute-Percent-error-in-the-Proc-Arima/m-p/651255#M3843</link>
      <description>&lt;P&gt;data arima.js_dispos;&lt;BR /&gt;set arima.js_2005to2018;&lt;BR /&gt;label year="y" cases="c";&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;proc gplot data=arima.js_dispos;&lt;/P&gt;&lt;P&gt;plot cases*year;&lt;BR /&gt;symbol i=spline v=star ci=red cv=bib;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;proc arima data=arima.js_dispos;&lt;BR /&gt;identify var=cases stationarity=(adf=1);&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;data arima.js_dispos_dif2;&lt;BR /&gt;set arima.js_dispos;&lt;BR /&gt;z=cases;&lt;BR /&gt;difz=dif(z);&lt;BR /&gt;difz2=dif(difz);&lt;BR /&gt;label z="n" difz="d1" difz2="d2" ;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;proc gplot data=arima.js_dispos_dif2;&lt;BR /&gt;plot (z difz difz2)*year;&lt;BR /&gt;symbol i=spline v=star ci=red cv=bib;&lt;BR /&gt;run;&lt;BR /&gt;proc arima data=arima.js_dispos_dif2;&lt;BR /&gt;identify var=difz2 stationarity=(adf=1);&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;proc arima data=arima.js_dispos_dif2;&lt;BR /&gt;identify var=difz2 stationarity=(adf=1) WHITENOISE=IGNOREMISS;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;proc arima data=arima.js_dispos_dif2;&lt;BR /&gt;identify var=difz2 minic perror=(8:11);&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;/*test proc arima data=arima.js_dispos_dif2;&lt;BR /&gt;identify var=difz2 minic P=(0:5) Q=(0:5) ;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;---------------test end*/&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;proc arima data=arima.js_dispos_dif2;&lt;BR /&gt;identify var=z(2) nlag=6;&lt;BR /&gt;estimate q=0 p=0 method=ml;&lt;BR /&gt;forecast lead=5 out=arima.outvalue id=year;&lt;BR /&gt;run;&lt;BR /&gt;quit;&lt;/P&gt;</description>
      <pubDate>Thu, 28 May 2020 01:20:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/How-to-Show-MAPE-Mean-Absolute-Percent-error-in-the-Proc-Arima/m-p/651255#M3843</guid>
      <dc:creator>critiasun</dc:creator>
      <dc:date>2020-05-28T01:20:28Z</dc:date>
    </item>
  </channel>
</rss>

