<?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 AIC &amp;amp; SBC negative in SAS Forecasting and Econometrics</title>
    <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/AIC-amp-SBC-negative/m-p/821987#M4448</link>
    <description>Hi so I do research to analyze the impact of earthquake and COVID-19 towards OCC stars hotel with ARIMA intervention and got AR(1) for the ARIMA and the results have AIC n SBC negative, so do the first intervention and second intervention. the intervention orders for first intervention are b=0 s=0 and r=0, how do I solve this? Thank you in advance🥺&lt;span class="lia-unicode-emoji" title=":folded_hands:"&gt;🙏&lt;/span&gt;</description>
    <pubDate>Thu, 07 Jul 2022 07:01:05 GMT</pubDate>
    <dc:creator>azhlla</dc:creator>
    <dc:date>2022-07-07T07:01:05Z</dc:date>
    <item>
      <title>AIC &amp; SBC negative</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/AIC-amp-SBC-negative/m-p/821987#M4448</link>
      <description>Hi so I do research to analyze the impact of earthquake and COVID-19 towards OCC stars hotel with ARIMA intervention and got AR(1) for the ARIMA and the results have AIC n SBC negative, so do the first intervention and second intervention. the intervention orders for first intervention are b=0 s=0 and r=0, how do I solve this? Thank you in advance🥺&lt;span class="lia-unicode-emoji" title=":folded_hands:"&gt;🙏&lt;/span&gt;</description>
      <pubDate>Thu, 07 Jul 2022 07:01:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/AIC-amp-SBC-negative/m-p/821987#M4448</guid>
      <dc:creator>azhlla</dc:creator>
      <dc:date>2022-07-07T07:01:05Z</dc:date>
    </item>
    <item>
      <title>Re: AIC &amp; SBC negative</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/AIC-amp-SBC-negative/m-p/822010#M4449</link>
      <description>&lt;P&gt;&lt;EM&gt;&amp;gt;&amp;nbsp;&amp;nbsp;how do I solve this?&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;It is not clear to me what you are trying to solve. AIC and SBC can both be negative. That (by itself) does not indicate that something is wrong with the model. For example, in PROC GLMSELECT, &lt;A href="https://go.documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/statug/statug_glmselect_details15.htm" target="_self"&gt;the definitions for AIC and SBC&lt;/A&gt;&amp;nbsp;include a term of the form log(SSE / &lt;EM&gt;n&lt;/EM&gt;). If SSE &amp;lt; &lt;EM&gt;n&lt;/EM&gt;, then this quantity is negative.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please post the SAS procedure statements that you are using to specify the model. That will give us more information.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jul 2022 09:59:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/AIC-amp-SBC-negative/m-p/822010#M4449</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2022-07-07T09:59:54Z</dc:date>
    </item>
    <item>
      <title>Re: AIC &amp; SBC negative</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/AIC-amp-SBC-negative/m-p/822012#M4450</link>
      <description>&lt;P&gt;Thank you so much for the explanation. My box cox result for the lambda is 1.5 so transform the data. Here is my procedure:&lt;/P&gt;&lt;P&gt;/*IMPORT DATA*/&lt;BR /&gt;LIBNAME PRA XLSX "/home/u61344338/TPK_mul/PRA.xlsx";&lt;BR /&gt;/*BOX-COX TEST*/&lt;BR /&gt;DATA PRA.HB; SET PRA.HB; TRHBPI=(HBPI)**1.5; Y=0; RUN;&lt;BR /&gt;PROC TRANSREG MAXITER=0 NOZEROCONSTANT;&lt;BR /&gt;MODEL BOXCOX(TRHBPI)=IDENTITY(Y);&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;/*ADF TEST*/&lt;BR /&gt;PROC ARIMA DATA=PRA.HB;&lt;BR /&gt;IDENTIFY VAR=TRHBPI NLAG=24 STATIONARITY=(ADF);&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/*ARIMA PRAINTERVENTION MODEL*/&lt;BR /&gt;/*ARIMA100 TRHBPI*/&lt;BR /&gt;PROC ARIMA DATA=PRA.HB PLOTS&lt;BR /&gt;(ONLY)=(SERIES(CORR CROSSCORR) RESIDUAL(CORR NORMAL)&lt;BR /&gt;FORECAST(FORECASTONLY));&lt;BR /&gt;IDENTIFY VAR=TRHBPI;&lt;BR /&gt;ESTIMATE P=1 METHOD=CLS;&lt;BR /&gt;FORECAST LEAD=19 BACK=0 ALPHA=0.05 OUT=PRA.HBF100 PRINTALL;&lt;BR /&gt;OUTLIER;&lt;BR /&gt;RUN;&lt;BR /&gt;PROC UNIVARIATE DATA=PRA.HBF100 NORMAL;&lt;BR /&gt;VAR RESIDUAL;&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;/* FIRST ARIMA INTERVENTION*/&lt;/P&gt;&lt;P&gt;LIBNAME AI1 XLSX "/home/u61344338/TPK_mul/AI1.xlsx";&lt;BR /&gt;/*AI1 b=0 s=0*/&lt;BR /&gt;PROC ARIMA DATA=AI1.HB;&lt;BR /&gt;IDENTIFY VAR=TRHBI1 CROSSCORR=(s) NLAG=18 NOPRINT;&lt;BR /&gt;ESTIMATE P=(1) INPUT=(0$ (0) s);&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;FORECAST LEAD=22 OUT=AI1.HBF PRINTALL;&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;PROC UNIVARIATE DATA=AI1.HBF NORMAL;&lt;BR /&gt;VAR RESIDUAL;&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;/*SECOND ARIMA INTERVENTION*/&lt;BR /&gt;/*AI2 b=0 s=7*/&lt;/P&gt;&lt;P&gt;LIBNAME AI2 XLSX "/home/u61344338/TPK_mul/AI2.xlsx";&lt;/P&gt;&lt;P&gt;PROC ARIMA DATA=AI2.HB;&lt;BR /&gt;IDENTIFY VAR=TRHBI2 CROSSCORR=(s1 s2) NLAG=24 NOPRINT;&lt;BR /&gt;ESTIMATE P=(1) INPUT=(0$ (7) s2 0$ (0) s1);&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;FORECAST LEAD=12 OUT=AI2.HBF PRINTALL;&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;PROC UNIVARIATE DATA=AI2.HBF NORMAL;&lt;BR /&gt;VAR RESIDUAL;&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there anything wrong with it?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jul 2022 10:12:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/AIC-amp-SBC-negative/m-p/822012#M4450</guid>
      <dc:creator>azhlla</dc:creator>
      <dc:date>2022-07-07T10:12:44Z</dc:date>
    </item>
  </channel>
</rss>

