<?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: proc timeseries TCC in SAS Forecasting and Econometrics</title>
    <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/proc-timeseries-TCC/m-p/438465#M3029</link>
    <description>&lt;P&gt;The moving averages are centered around the observations. So there will be some missing values at the beginning and end. You can find the formulas here (look at the end of the page)&lt;/P&gt;
&lt;P&gt;&lt;A href="http://go.documentation.sas.com/?docsetId=etsug&amp;amp;docsetTarget=etsug_timeseries_details07.htm&amp;amp;docsetVersion=14.3&amp;amp;locale=en" target="_blank"&gt;http://go.documentation.sas.com/?docsetId=etsug&amp;amp;docsetTarget=etsug_timeseries_details07.htm&amp;amp;docsetVersion=14.3&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, the window of data that is missing the TCC component at the end is too wide for your data. That's why I was suggesting to check if there are missing values.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want estimates for the TC component for all the range of the data, and into the future, I suggest you look at models to forecast it. For example PROC ESM and PROC UCM, or PROC X12 and X13.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 19 Feb 2018 19:31:12 GMT</pubDate>
    <dc:creator>mitrov</dc:creator>
    <dc:date>2018-02-19T19:31:12Z</dc:date>
    <item>
      <title>proc timeseries TCC</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/proc-timeseries-TCC/m-p/438425#M3026</link>
      <description>&lt;P&gt;I have a dataset from March 2006 to January 2018.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Using proc timeseries, I am trying to identify the trend from a time series dataset.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods graphics on;
proc timeseries data = all_posters_ext plots = (series corr decomp) outdecomp = all_posters_ext_trend;
	id date interval = month accumulate = avg;
	var nbr_poster;
	decomp ORIG TCC / lambda = 10000;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, the TCC variable given by that code give empty observations from March 2006 to August 2006 and from August 2017 to January 2018.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it possible to expand the TCC to cover the whole time period analyzed (March 2006 to January 2018)?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Feb 2018 16:01:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/proc-timeseries-TCC/m-p/438425#M3026</guid>
      <dc:creator>Shawn08</dc:creator>
      <dc:date>2018-02-19T16:01:11Z</dc:date>
    </item>
    <item>
      <title>Re: proc timeseries TCC</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/proc-timeseries-TCC/m-p/438448#M3027</link>
      <description>&lt;P&gt;The TCC(trend-cycle) component is a moving average of the data. How do your data look in those periods? Any missing values?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Feb 2018 18:24:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/proc-timeseries-TCC/m-p/438448#M3027</guid>
      <dc:creator>mitrov</dc:creator>
      <dc:date>2018-02-19T18:24:37Z</dc:date>
    </item>
    <item>
      <title>Re: proc timeseries TCC</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/proc-timeseries-TCC/m-p/438451#M3028</link>
      <description>&lt;P&gt;There are no missing values.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I understand that the beginning of the period might cause problems as moving average need historical data. However, no results are also given for the end of the timeline.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Feb 2018 18:42:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/proc-timeseries-TCC/m-p/438451#M3028</guid>
      <dc:creator>Shawn08</dc:creator>
      <dc:date>2018-02-19T18:42:49Z</dc:date>
    </item>
    <item>
      <title>Re: proc timeseries TCC</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/proc-timeseries-TCC/m-p/438465#M3029</link>
      <description>&lt;P&gt;The moving averages are centered around the observations. So there will be some missing values at the beginning and end. You can find the formulas here (look at the end of the page)&lt;/P&gt;
&lt;P&gt;&lt;A href="http://go.documentation.sas.com/?docsetId=etsug&amp;amp;docsetTarget=etsug_timeseries_details07.htm&amp;amp;docsetVersion=14.3&amp;amp;locale=en" target="_blank"&gt;http://go.documentation.sas.com/?docsetId=etsug&amp;amp;docsetTarget=etsug_timeseries_details07.htm&amp;amp;docsetVersion=14.3&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, the window of data that is missing the TCC component at the end is too wide for your data. That's why I was suggesting to check if there are missing values.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want estimates for the TC component for all the range of the data, and into the future, I suggest you look at models to forecast it. For example PROC ESM and PROC UCM, or PROC X12 and X13.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Feb 2018 19:31:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/proc-timeseries-TCC/m-p/438465#M3029</guid>
      <dc:creator>mitrov</dc:creator>
      <dc:date>2018-02-19T19:31:12Z</dc:date>
    </item>
  </channel>
</rss>

