<?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: USERTYPE , in  PROC X13 in SAS Forecasting and Econometrics</title>
    <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/USERTYPE-in-PROC-X13/m-p/854795#M4600</link>
    <description>The author for the document "Time Series Research Staff; Center for Statistical Research and Methodology; U. S. Census Bureau" can be reached by sending an email to srd.time.series@census.gov or x12@census.gov. If you don't get a reply here I suggest that you email the author.&lt;BR /&gt;&lt;BR /&gt;Best regards, Jos</description>
    <pubDate>Fri, 20 Jan 2023 10:44:05 GMT</pubDate>
    <dc:creator>JosvanderVelden</dc:creator>
    <dc:date>2023-01-20T10:44:05Z</dc:date>
    <item>
      <title>USERTYPE , in  PROC X13</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/USERTYPE-in-PROC-X13/m-p/853240#M4589</link>
      <description>&lt;P&gt;I am trying to understand what does&lt;STRONG&gt; usertype=&lt;/STRONG&gt; do&amp;nbsp; in PROC X13 regression statement ? What happens behind the scenes when i specifie diffrent options ?&lt;/P&gt;&lt;P&gt;For example consider this code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data SALESDATA;&lt;/P&gt;&lt;P&gt;      set SASHELP.AIR;&lt;/P&gt;&lt;P&gt;      where date&amp;lt;="01dec1959"d;&lt;/P&gt;&lt;P&gt;      format date ddmmyy10.;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc sql noprint;&lt;/P&gt;&lt;P&gt;      select avg(day(intnx('MONTH',date,0, 'e'))) into :lom_avg trimmed&lt;/P&gt;&lt;P&gt;      from SASHELP.AIR;;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;%put &amp;amp;=lom_avg;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data REGRESSORS(keep=date lom_full lom_centered );&lt;/P&gt;&lt;P&gt;      set SASHELP.AIR;&lt;/P&gt;&lt;P&gt;      lom_full = day(intnx('MONTH',date,0, 'e'));&lt;/P&gt;&lt;P&gt;      lom_centered=lom_full-&amp;amp;lom_avg;&lt;/P&gt;&lt;P&gt;      format date ddmmyy10.;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;* option 1;&lt;/P&gt;&lt;P&gt;proc x13 data=SALESDATA date=DATE interval=MONTH plots=none;&lt;/P&gt;&lt;P&gt;      transform function=log;&lt;/P&gt;&lt;P&gt;      regression PREDEFINED =LOM ;&lt;/P&gt;&lt;P&gt;      arima model=((0,1,1)(0,1,1));&lt;/P&gt;&lt;P&gt;      x11 trendma = 13 ;&lt;/P&gt;&lt;P&gt;      output out=out_predef a1 b1 c1 d1 d10 d11 d12;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;* option 2;&lt;/P&gt;&lt;P&gt;proc x13 &amp;nbsp;data=SALESDATA auxdata=REGRESSORS date=DATE interval=MONTH plots=none;&lt;/P&gt;&lt;P&gt;      transform function=log;&lt;/P&gt;&lt;P&gt;      regression uservar=lom_centered / usertype=lom;&lt;/P&gt;&lt;P&gt;      arima model=((0,1,1)(0,1,1));&lt;/P&gt;&lt;P&gt;      x11 trendma = 13 ;&lt;/P&gt;&lt;P&gt;      output out=out_user_lom_c a1 b1 c1 d1 d10 d11 d12;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;* option 3;&lt;/P&gt;&lt;P&gt;proc x13 &amp;nbsp;data=SALESDATA auxdata=REGRESSORS date=DATE interval=MONTH plots=none;&lt;/P&gt;&lt;P&gt;      transform function=log;&lt;/P&gt;&lt;P&gt;      regression uservar=lom_centered / usertype=user;&lt;/P&gt;&lt;P&gt;      arima model=((0,1,1)(0,1,1));&lt;/P&gt;&lt;P&gt;      x11 trendma = 13 ;&lt;/P&gt;&lt;P&gt;      output out=out_user_usr_c a1 b1 c1 d1 d10 d11 d12;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;option 1 and 2 yield the same results (for&amp;nbsp; table D11) but&amp;nbsp; it's diffrent from option 3 (usertype=user), and I'd like to understand what's happening in the background of each option of usertype=user.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you, please, share what the usertype=user option does?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Checking the documentation of the the Census Bureau (&lt;A href="https://www2.census.gov/software/x-13arima-seats/x-13-data/documentation/docx13as.pdf" target="_blank"&gt;https://www2.census.gov/software/x-13arima-seats/x-13-data/documentation/docx13as.pdf&lt;/A&gt;) revealed nothing too.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jan 2023 12:29:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/USERTYPE-in-PROC-X13/m-p/853240#M4589</guid>
      <dc:creator>T_AR</dc:creator>
      <dc:date>2023-01-11T12:29:13Z</dc:date>
    </item>
    <item>
      <title>Re: USERTYPE , in  PROC X13</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/USERTYPE-in-PROC-X13/m-p/854795#M4600</link>
      <description>The author for the document "Time Series Research Staff; Center for Statistical Research and Methodology; U. S. Census Bureau" can be reached by sending an email to srd.time.series@census.gov or x12@census.gov. If you don't get a reply here I suggest that you email the author.&lt;BR /&gt;&lt;BR /&gt;Best regards, Jos</description>
      <pubDate>Fri, 20 Jan 2023 10:44:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/USERTYPE-in-PROC-X13/m-p/854795#M4600</guid>
      <dc:creator>JosvanderVelden</dc:creator>
      <dc:date>2023-01-20T10:44:05Z</dc:date>
    </item>
  </channel>
</rss>

