<?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 x12 on short time series data? in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/proc-x12-on-short-time-series-data/m-p/760958#M37115</link>
    <description>&lt;P&gt;I am no expert on Proc X12.&amp;nbsp; I am however aware of Dr. Wicklin's (&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS&lt;/a&gt;)&amp;nbsp;blog post on mean imputation.&amp;nbsp; Perhaps mean imputation could be employed here.&amp;nbsp; However, Dr. Wicklin discusses some drawbacks to mean imputation, so I think be aware of those.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/iml/2017/12/04/mean-imputation-sas.html" target="_blank" rel="noopener"&gt;https://blogs.sas.com/content/iml/2017/12/04/mean-imputation-sas.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;I have no idea as to what analyses you are trying to conduct and whether or not mean imputation would invalidate your analyses.&lt;/P&gt;
&lt;P&gt;Dr. Wicklin recommends multiple imputation in general:&amp;nbsp;&amp;nbsp;&lt;A href="https://go.documentation.sas.com/doc/en/pgmsascdc/9.4_3.3/statug/statug_mi_overview.htm" target="_blank"&gt;https://go.documentation.sas.com/doc/en/pgmsascdc/9.4_3.3/statug/statug_mi_overview.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jim&lt;/P&gt;</description>
    <pubDate>Wed, 11 Aug 2021 16:31:46 GMT</pubDate>
    <dc:creator>jimbarbour</dc:creator>
    <dc:date>2021-08-11T16:31:46Z</dc:date>
    <item>
      <title>proc x12 on short time series data?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/proc-x12-on-short-time-series-data/m-p/760957#M37114</link>
      <description>&lt;P&gt;Hello SAS Experts,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;Following code runs but get error as I only have 10 quarters of data and proc x12 needs 3 years (12 quarters). Any workaround for this?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data have;&lt;BR /&gt;input quarter : YYQ6. variable1 variable2 variable3;&lt;BR /&gt;cards;&lt;BR /&gt;2018Q3 501 500 95 &lt;BR /&gt;2018Q4 520 502 96 &lt;BR /&gt;2019Q1 510 502 101&lt;BR /&gt;2019Q2 515 400 105&lt;BR /&gt;2019Q3 506 402 106&lt;BR /&gt;2019Q4 530 400 98&lt;BR /&gt;2020Q1 515 399 95&lt;BR /&gt;2020Q2 520 399 95&lt;BR /&gt;2020Q3 510 399 95&lt;BR /&gt;2020Q4 540 399 95&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;proc x12 data=have date= quarter interval=quarter;&lt;BR /&gt;var variable1;&lt;BR /&gt;x11;&lt;BR /&gt;output out = out a1 d10 d11 d12 d13;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But get following errors:&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;NOTE: This release of the X12 procedure is based on the Census Bureau X-13ARIMA-SEATS Release Version 1.1.&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;ERROR: Series to be modeled and/or seasonally adjusted must have at least 3 complete years of data.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;ERROR: An error was found in PROC X12 input. Processing skipped for variable variable1.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Aug 2021 16:00:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/proc-x12-on-short-time-series-data/m-p/760957#M37114</guid>
      <dc:creator>ubshams</dc:creator>
      <dc:date>2021-08-11T16:00:07Z</dc:date>
    </item>
    <item>
      <title>Re: proc x12 on short time series data?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/proc-x12-on-short-time-series-data/m-p/760958#M37115</link>
      <description>&lt;P&gt;I am no expert on Proc X12.&amp;nbsp; I am however aware of Dr. Wicklin's (&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS&lt;/a&gt;)&amp;nbsp;blog post on mean imputation.&amp;nbsp; Perhaps mean imputation could be employed here.&amp;nbsp; However, Dr. Wicklin discusses some drawbacks to mean imputation, so I think be aware of those.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/iml/2017/12/04/mean-imputation-sas.html" target="_blank" rel="noopener"&gt;https://blogs.sas.com/content/iml/2017/12/04/mean-imputation-sas.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;I have no idea as to what analyses you are trying to conduct and whether or not mean imputation would invalidate your analyses.&lt;/P&gt;
&lt;P&gt;Dr. Wicklin recommends multiple imputation in general:&amp;nbsp;&amp;nbsp;&lt;A href="https://go.documentation.sas.com/doc/en/pgmsascdc/9.4_3.3/statug/statug_mi_overview.htm" target="_blank"&gt;https://go.documentation.sas.com/doc/en/pgmsascdc/9.4_3.3/statug/statug_mi_overview.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jim&lt;/P&gt;</description>
      <pubDate>Wed, 11 Aug 2021 16:31:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/proc-x12-on-short-time-series-data/m-p/760958#M37115</guid>
      <dc:creator>jimbarbour</dc:creator>
      <dc:date>2021-08-11T16:31:46Z</dc:date>
    </item>
  </channel>
</rss>

