<?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 STAT Time Series Help in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/STAT-Time-Series-Help/m-p/61550#M2877</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oh wait, I found the dataset, in the Work folder. Whattyaknow? haha. Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 07 Sep 2011 20:14:55 GMT</pubDate>
    <dc:creator>scched</dc:creator>
    <dc:date>2011-09-07T20:14:55Z</dc:date>
    <item>
      <title>STAT Time Series Help</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/STAT-Time-Series-Help/m-p/61547#M2874</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, I'm not sure if this is the right place to be requesting help with a problem for school but I figured I'd try.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway, I am trying to use SAS and familiar with how to use if for multiple and logistic regression, however, I am struggling using it now for Time Series.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am supposed to create a sample of length 200 from the time series model and then I am supposed to:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Plot the Series&lt;/P&gt;&lt;P&gt;2. Give the corresponding ACF and PACF plots.&lt;/P&gt;&lt;P&gt;3. Identify it as ARMA (p,q) for appropriate values of p and q.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The model (with subscripts listed as lowercase letters) the sample is supposed to run off is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yt= 1.5Y(t-1) - 0.56Y(t-2) + Et&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here is the code I entered into SAS, I recieve the error message LIBNAME TS is not assigned.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data TS.ARMA11;&lt;/P&gt;&lt;P&gt;y_1=0;&lt;/P&gt;&lt;P&gt;y_2=0;&lt;/P&gt;&lt;P&gt;do N=1 to 300;&lt;/P&gt;&lt;P&gt;e = normal (0822016280);&lt;/P&gt;&lt;P&gt;y= 1.5*y_1-0.56*y_2 + e;&lt;/P&gt;&lt;P&gt;y_2=y_1;&lt;/P&gt;&lt;P&gt;y_1=y;&lt;/P&gt;&lt;P&gt;time = -100 + n;&lt;/P&gt;&lt;P&gt;if n &amp;gt; 100 then output;&lt;/P&gt;&lt;P&gt;end;&lt;/P&gt;&lt;P&gt;keep time y;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Someone please help me. Thanks a lot in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Scott&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Sep 2011 19:59:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/STAT-Time-Series-Help/m-p/61547#M2874</guid>
      <dc:creator>scched</dc:creator>
      <dc:date>2011-09-07T19:59:40Z</dc:date>
    </item>
    <item>
      <title>STAT Time Series Help</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/STAT-Time-Series-Help/m-p/61548#M2875</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; In SAS, a dot in a data set name is interpretted as a two-level name: library.member.&lt;/P&gt;&lt;P&gt;Assuming you want to create the data in the WORK library, just use DATA TSARMA11 without the dot (or use an underscore, if you want).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Sep 2011 20:04:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/STAT-Time-Series-Help/m-p/61548#M2875</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2011-09-07T20:04:42Z</dc:date>
    </item>
    <item>
      <title>STAT Time Series Help</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/STAT-Time-Series-Help/m-p/61549#M2876</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Rick, thanks for your reply. I removed the period so my first line now reads as you wrote. I now get the error message:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.TSARMA11 has 200 observations and 2 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; real time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.04 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cpu time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.00 seconds&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Sep 2011 20:13:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/STAT-Time-Series-Help/m-p/61549#M2876</guid>
      <dc:creator>scched</dc:creator>
      <dc:date>2011-09-07T20:13:34Z</dc:date>
    </item>
    <item>
      <title>STAT Time Series Help</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/STAT-Time-Series-Help/m-p/61550#M2877</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oh wait, I found the dataset, in the Work folder. Whattyaknow? haha. Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Sep 2011 20:14:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/STAT-Time-Series-Help/m-p/61550#M2877</guid>
      <dc:creator>scched</dc:creator>
      <dc:date>2011-09-07T20:14:55Z</dc:date>
    </item>
  </channel>
</rss>

