<?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 varmax in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/proc-varmax/m-p/133135#M6948</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi clcl&lt;/P&gt;&lt;P&gt;Well, intially I thought "control the change" meant to "allow the size of the change in exogeneous x to be controlled by the user."&amp;nbsp; That can't be done as part of the estimation and would be post-processing in a datastep.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But then I got to chatting with the developer and he read your question differentlly.&amp;nbsp; He thought you might be asking about a RESTRICT statement. If that is the case, yes you can restrict the size of the effects of the variables with a restrict option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For instance, in the example above, it you wanted to restrict the contemporaneous response of the exogenous regressor to be zero for each equation, you could use the following syntax,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods graphics on;&lt;BR /&gt;proc varmax data=grunfeld plots=impulse;&lt;/P&gt;&lt;P&gt;model y1 y2 = x1 / p=1 lagmax=3 xlag=2 print=(impulsx=(all) estimates);&lt;BR /&gt;restrict XL(0,1,1)=0, XL(0,2,1)=0;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;good luck!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 Mar 2013 19:56:32 GMT</pubDate>
    <dc:creator>ets_kps</dc:creator>
    <dc:date>2013-03-14T19:56:32Z</dc:date>
    <item>
      <title>proc varmax</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/proc-varmax/m-p/133132#M6945</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can anypne please give me an example how to do&amp;nbsp; a dynamic multiplaier in proc varmax ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CL&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Mar 2013 09:29:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/proc-varmax/m-p/133132#M6945</guid>
      <dc:creator>clcl</dc:creator>
      <dc:date>2013-03-13T09:29:28Z</dc:date>
    </item>
    <item>
      <title>Re: proc varmax</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/proc-varmax/m-p/133133#M6946</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi CL,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I spoke with the developer and we determined that the solution to your problem was to use the the PRINT=(IMPULSX=(all)) option on the model statement in VARMAX.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;The following code should work for you. Let me know if you need anything else.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;data grunfeld;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp; input year y1 y2 y3 x1 x2 x3;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp; label y1='Gross Investment GE'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; y2='Capital Stock Lagged GE'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; y3='Value of Outstanding Shares GE Lagged'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; x1='Gross Investment W'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; x2='Capital Stock Lagged W'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; x3='Value of Outstanding Shares Lagged W';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;datalines;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;1935&amp;nbsp; 33.1 1170.6&amp;nbsp; 97.8 12.93&amp;nbsp; 191.5&amp;nbsp;&amp;nbsp; 1.8&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;1936&amp;nbsp; 45.0 2015.8 104.4 25.90&amp;nbsp; 516.0&amp;nbsp;&amp;nbsp;&amp;nbsp; .8&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;1937&amp;nbsp; 77.2 2803.3 118.0 35.05&amp;nbsp; 729.0&amp;nbsp;&amp;nbsp; 7.4&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;1938&amp;nbsp; 44.6 2039.7 156.2 22.89&amp;nbsp; 560.4&amp;nbsp; 18.1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;1939&amp;nbsp; 48.1 2256.2 172.6 18.84&amp;nbsp; 519.9&amp;nbsp; 23.5&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;1940&amp;nbsp; 74.4 2132.2 186.6 28.57&amp;nbsp; 628.5&amp;nbsp; 26.5&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;1941 113.0 1834.1 220.9 48.51&amp;nbsp; 537.1&amp;nbsp; 36.2&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;1942&amp;nbsp; 91.9 1588.0 287.8 43.34&amp;nbsp; 561.2&amp;nbsp; 60.8&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;1943&amp;nbsp; 61.3 1749.4 319.9 37.02&amp;nbsp; 617.2&amp;nbsp; 84.4&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;1944&amp;nbsp; 56.8 1687.2 321.3 37.81&amp;nbsp; 626.7&amp;nbsp; 91.2&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;1945&amp;nbsp; 93.6 2007.7 319.6 39.27&amp;nbsp; 737.2&amp;nbsp; 92.4&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;1946 159.9 2208.3 346.0 53.46&amp;nbsp; 760.5&amp;nbsp; 86.0&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;1947 147.2 1656.7 456.4 55.56&amp;nbsp; 581.4 111.1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;1948 146.3 1604.4 543.4 49.56&amp;nbsp; 662.3 130.6&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;1949&amp;nbsp; 98.3 1431.8 618.3 32.04&amp;nbsp; 583.8 141.8&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;1950&amp;nbsp; 93.5 1610.5 647.4 32.24&amp;nbsp; 635.2 136.7&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;1951 135.2 1819.4 671.3 54.38&amp;nbsp; 723.8 129.7&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;1952 157.3 2079.7 726.1 71.78&amp;nbsp; 864.1 145.5&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;1953 179.5 2371.6 800.3 90.08 1193.5 174.8&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;1954 189.6 2759.9 888.9 68.60 1188.9 213.5&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;SPAN style="font-family: Courier New;"&gt;proc &lt;/SPAN&gt;&lt;SPAN style="color: #000080; font-family: Courier New;"&gt;&lt;STRONG&gt;varmax&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: Courier New;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-family: Courier New;"&gt;data&lt;/SPAN&gt;&lt;SPAN style="font-family: Courier New;"&gt;=grunfeld ;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;SPAN style="color: #0000ff; font-family: Courier New;"&gt;model&lt;/SPAN&gt;&lt;SPAN style="font-family: Courier New;"&gt; y1 y2 = x1 / &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-family: Courier New;"&gt;p&lt;/SPAN&gt;&lt;SPAN style="font-family: Courier New;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #008080; font-family: Courier New;"&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: Courier New;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-family: Courier New;"&gt;lagmax&lt;/SPAN&gt;&lt;SPAN style="font-family: Courier New;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #008080; font-family: Courier New;"&gt;&lt;STRONG&gt;3&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: Courier New;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-family: Courier New;"&gt;print&lt;/SPAN&gt;&lt;SPAN style="font-family: Courier New;"&gt;=(impulsx=(all) estimates);&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;SPAN style="font-family: Courier New;"&gt;run;&lt;/SPAN&gt;&lt;SPAN style="font-family: Courier New;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Mar 2013 17:54:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/proc-varmax/m-p/133133#M6946</guid>
      <dc:creator>ets_kps</dc:creator>
      <dc:date>2013-03-13T17:54:02Z</dc:date>
    </item>
    <item>
      <title>Re: proc varmax</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/proc-varmax/m-p/133134#M6947</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for your reply !&lt;/P&gt;&lt;P&gt;the implus option lets your see the effect of one variable on another , is there any way we can control the change ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks again !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Mar 2013 09:08:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/proc-varmax/m-p/133134#M6947</guid>
      <dc:creator>clcl</dc:creator>
      <dc:date>2013-03-14T09:08:53Z</dc:date>
    </item>
    <item>
      <title>Re: proc varmax</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/proc-varmax/m-p/133135#M6948</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi clcl&lt;/P&gt;&lt;P&gt;Well, intially I thought "control the change" meant to "allow the size of the change in exogeneous x to be controlled by the user."&amp;nbsp; That can't be done as part of the estimation and would be post-processing in a datastep.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But then I got to chatting with the developer and he read your question differentlly.&amp;nbsp; He thought you might be asking about a RESTRICT statement. If that is the case, yes you can restrict the size of the effects of the variables with a restrict option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For instance, in the example above, it you wanted to restrict the contemporaneous response of the exogenous regressor to be zero for each equation, you could use the following syntax,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods graphics on;&lt;BR /&gt;proc varmax data=grunfeld plots=impulse;&lt;/P&gt;&lt;P&gt;model y1 y2 = x1 / p=1 lagmax=3 xlag=2 print=(impulsx=(all) estimates);&lt;BR /&gt;restrict XL(0,1,1)=0, XL(0,2,1)=0;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;good luck!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Mar 2013 19:56:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/proc-varmax/m-p/133135#M6948</guid>
      <dc:creator>ets_kps</dc:creator>
      <dc:date>2013-03-14T19:56:32Z</dc:date>
    </item>
    <item>
      <title>Re: proc varmax</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/proc-varmax/m-p/133136#M6949</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for you reply,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what you wrote at the begging is what we thought, there is no other way than doing it in a datastep.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks again for all your help !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CL &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 17 Mar 2013 07:27:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/proc-varmax/m-p/133136#M6949</guid>
      <dc:creator>clcl</dc:creator>
      <dc:date>2013-03-17T07:27:21Z</dc:date>
    </item>
  </channel>
</rss>

