<?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: how to model binary outcome with time series predictors in SAS Forecasting and Econometrics</title>
    <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/how-to-model-binary-outcome-with-time-series-predictors/m-p/345093#M2260</link>
    <description>Thank you!&lt;BR /&gt;</description>
    <pubDate>Tue, 28 Mar 2017 17:34:52 GMT</pubDate>
    <dc:creator>A_S</dc:creator>
    <dc:date>2017-03-28T17:34:52Z</dc:date>
    <item>
      <title>how to model binary outcome with time series predictors</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/how-to-model-binary-outcome-with-time-series-predictors/m-p/344434#M2256</link>
      <description>&lt;P&gt;Dear SAS Communities,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to model a binary outcome (event = 1, nonevent = 0) with the independent variables being time series data (continuous). The dependent variable marks when event occured during a specific time period, and itself is a time series.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would greatly appreciate guidance on which proceedures are applicable. The PROCs I tried thus far appear to model continuous outcomes.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here are some more specific questions whose answer would help:&lt;/P&gt;&lt;P&gt;Is there a way to set PROC PANEL to a logit model (this power point says it is possible &lt;A href="http://www.indiana.edu/~wim/docs/10_7_2011_slides.pdf" target="_blank"&gt;http://www.indiana.edu/~wim/docs/10_7_2011_slides.pdf&lt;/A&gt;)?&lt;/P&gt;&lt;P&gt;How do you set PROC NEURAL or HPNEURAL to run a recurrent neural network?&lt;/P&gt;&lt;P&gt;How do you use time series data in PROC LOGISTIC (my understanding is that LAG is for categorical variables)?&lt;/P&gt;&lt;P&gt;How do you set PROC VARMAX or SSM for binary outcomes?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;acs&lt;/P&gt;</description>
      <pubDate>Sun, 26 Mar 2017 18:52:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/how-to-model-binary-outcome-with-time-series-predictors/m-p/344434#M2256</guid>
      <dc:creator>A_S</dc:creator>
      <dc:date>2017-03-26T18:52:38Z</dc:date>
    </item>
    <item>
      <title>Re: how to model binary outcome with time series predictors</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/how-to-model-binary-outcome-with-time-series-predictors/m-p/344499#M2257</link>
      <description>&lt;P&gt;If you are forecasting a variable, then it is called "Impulse Interventions"&lt;/P&gt;
&lt;P&gt;I quoted example from documentation here. and&lt;/P&gt;
&lt;P&gt;also check "Example 8.6: Detection of Level Changes in the Nile River Data"&lt;/P&gt;
&lt;P&gt;in PROC ARIMA.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data a;
set a;
ad = (date = '1mar1992'd);
run;
proc arima data=a;
identify var=sales crosscorr=ad;
estimate p=1 q=1 input=ad;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 27 Mar 2017 04:20:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/how-to-model-binary-outcome-with-time-series-predictors/m-p/344499#M2257</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2017-03-27T04:20:52Z</dc:date>
    </item>
    <item>
      <title>Re: how to model binary outcome with time series predictors</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/how-to-model-binary-outcome-with-time-series-predictors/m-p/344750#M2258</link>
      <description>&lt;P&gt;&lt;SPAN&gt;PROC NEURAL or HPNEURAL only support regular feed-forward neural net architectures, not recurrent neural net. You can mimic&amp;nbsp;the time series effects by adding lagged dependent variable as inputs. This approach usually works pretty well for very short-term forecast as it is exactly how the model is trained. If multiple steps out forecast is required, you will run into issues with forecast errors propagating&amp;nbsp;exponentially into the future steps because the forecasts has to be fed back into inputs for the lagged dependent variables to generate next step of forecast. The same issue applies to any non-time series models such as regression, logistic regression, decision tree, etc. It is less of an issue if you use lagged independent variables + all future values of independent variables are known.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I am not sure if PROC SSM and PROC VARMAX supports binary dependent var.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Mar 2017 19:34:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/how-to-model-binary-outcome-with-time-series-predictors/m-p/344750#M2258</guid>
      <dc:creator>alexchien</dc:creator>
      <dc:date>2017-03-27T19:34:48Z</dc:date>
    </item>
    <item>
      <title>Re: how to model binary outcome with time series predictors</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/how-to-model-binary-outcome-with-time-series-predictors/m-p/345093#M2260</link>
      <description>Thank you!&lt;BR /&gt;</description>
      <pubDate>Tue, 28 Mar 2017 17:34:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/how-to-model-binary-outcome-with-time-series-predictors/m-p/345093#M2260</guid>
      <dc:creator>A_S</dc:creator>
      <dc:date>2017-03-28T17:34:52Z</dc:date>
    </item>
    <item>
      <title>Re: how to model binary outcome with time series predictors</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/how-to-model-binary-outcome-with-time-series-predictors/m-p/345096#M2261</link>
      <description>Thank you! Will this example cover cases where the impulse is the target variable?&lt;BR /&gt;</description>
      <pubDate>Tue, 28 Mar 2017 17:36:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/how-to-model-binary-outcome-with-time-series-predictors/m-p/345096#M2261</guid>
      <dc:creator>A_S</dc:creator>
      <dc:date>2017-03-28T17:36:32Z</dc:date>
    </item>
    <item>
      <title>Re: how to model binary outcome with time series predictors</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/how-to-model-binary-outcome-with-time-series-predictors/m-p/345219#M2262</link>
      <description>&lt;P&gt;No. I don't know how to do Logistic Regression with time series data.&lt;/P&gt;
&lt;P&gt;Maybe you should consider about PROC GLIMMIX .&lt;/P&gt;</description>
      <pubDate>Wed, 29 Mar 2017 01:46:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/how-to-model-binary-outcome-with-time-series-predictors/m-p/345219#M2262</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2017-03-29T01:46:59Z</dc:date>
    </item>
    <item>
      <title>Re: how to model binary outcome with time series predictors</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/how-to-model-binary-outcome-with-time-series-predictors/m-p/346114#M2265</link>
      <description>Thank you!</description>
      <pubDate>Fri, 31 Mar 2017 12:28:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/how-to-model-binary-outcome-with-time-series-predictors/m-p/346114#M2265</guid>
      <dc:creator>A_S</dc:creator>
      <dc:date>2017-03-31T12:28:43Z</dc:date>
    </item>
  </channel>
</rss>

