<?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: Interpretation of RESTRICT output and LR test in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Interpretation-of-RESTRICT-output-and-LR-test/m-p/794835#M38995</link>
    <description>&lt;P&gt;To get a good answer to any of the questions you should include all of the code used in Proc Model.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Interpretation does depend on options used in the code.&lt;/P&gt;</description>
    <pubDate>Mon, 07 Feb 2022 16:51:27 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2022-02-07T16:51:27Z</dc:date>
    <item>
      <title>Interpretation of RESTRICT output and LR test</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Interpretation-of-RESTRICT-output-and-LR-test/m-p/794739#M38993</link>
      <description>&lt;P&gt;Hi SAS Community,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I used PROC MODEL to do some demand estimation with ITSUR. Inside the PROC MODEL procedure, I used RESTRICT to impose a few restrictions on the parameters. Then in the results, at the bottom of the table 'Nonlinear ITSUR Parameter Estimates', SAS printed out the estimate, std err, t value, and p value for each of the restrictions (see pic). How should I interpret these results? Does p&amp;lt;.0001 mean that it's valid to impose this restriction?&lt;/P&gt;&lt;P&gt;My second question is, in addition to these restrictions I have imposed, I would like to test another set of restrictions. Let's call them RES2. I'd like to run the ITSUR with and without RES2, then run a Likelihood Ratio Test. Could someone give some guidance on how to do that?&lt;/P&gt;&lt;P&gt;Thanks very much!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Angelica&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="liu6200_0-1644216514955.png" style="width: 633px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/68247i9076610F29155ED7/image-size/large?v=v2&amp;amp;px=999" role="button" title="liu6200_0-1644216514955.png" alt="liu6200_0-1644216514955.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Feb 2022 06:52:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Interpretation-of-RESTRICT-output-and-LR-test/m-p/794739#M38993</guid>
      <dc:creator>liu6200</dc:creator>
      <dc:date>2022-02-07T06:52:32Z</dc:date>
    </item>
    <item>
      <title>Re: Interpretation of RESTRICT output and LR test</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Interpretation-of-RESTRICT-output-and-LR-test/m-p/794835#M38995</link>
      <description>&lt;P&gt;To get a good answer to any of the questions you should include all of the code used in Proc Model.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Interpretation does depend on options used in the code.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Feb 2022 16:51:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Interpretation-of-RESTRICT-output-and-LR-test/m-p/794835#M38995</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2022-02-07T16:51:27Z</dc:date>
    </item>
    <item>
      <title>Re: Interpretation of RESTRICT output and LR test</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Interpretation-of-RESTRICT-output-and-LR-test/m-p/794853#M38997</link>
      <description>&lt;P&gt;Thank you for your reply!&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below is the code in PROC MODEL. The background of this project is that I'm estimating a non-linear demand system for six products: cb, ob, cj, oj, cs, os.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;proc model data=df;

	restrict gcb_cb + gcb_ob + gcb_cj + gcb_oj + gcb_cs + gcb_os = 0,
		 gcb_ob + gob_ob + gob_cj + gob_oj + gob_cs + gob_os = 0,
		 gcb_cj + gob_cj + gcj_cj + gcj_oj + gcj_cs + gcj_os = 0,
		 gcb_oj + gob_oj + gcj_oj + goj_oj + goj_cs + goj_os = 0,
		 gcb_cs + gob_cs + gcj_cs + goj_cs + gcs_cs + gcs_os = 0,
		 gcb_os + gob_os + gcj_os + goj_os + gcs_os + gcs_cs = 0,
		 acb + aob + acj + aoj + acs + aos = 1;

	lp = acb*lcb + aob*lob + acj*lcj + aoj*loj + acs*lcs + aos*los + .5*(
	gcb_cb*lcb*lcb + gcb_ob*lcb*lob + gcb_cj*lcb*lcj + gcb_oj*lcb*loj + gcb_cs*lcb*lcs + gcb_os*lcb*los +
	gcb_ob*lob*lcb + gob_ob*lob*lob + gob_cj*lob*lcj + gob_oj*lob*loj + gob_cs*lob*lcs + gob_os*lob*los +
	gcb_cj*lcj*lcb + gob_cj*lcj*lob + gcj_cj*lcj*lcj + gcj_oj*lcj*loj + gcj_cs*lcj*lcs + gcj_os*lcj*los +
	gcb_oj*loj*lcb + gob_oj*loj*lob + gcj_oj*loj*lcj + goj_oj*loj*loj + goj_cs*loj*lcs + goj_os*loj*los +
	gcb_cs*lcs*lcb + gob_cs*lcs*lob + gcj_cs*lcs*lcj + goj_cs*lcs*loj + gcs_cs*lcs*lcs + gcs_os*lcs*los +
	gcb_os*los*lcb + gob_os*los*lob + gcj_os*los*lcj + goj_os*los*loj + gcs_os*los*lcs + gos_os*los*los);

	wcb_h = acb + gcb_cb*lcb + gcb_ob*lob + gcb_cj*lcj + gcb_oj*loj + gcb_cs*lcs + gcb_os*los + bcb*(lx-lp); 
	wob_h = aob + gcb_ob*lcb + gob_ob*lob + gob_cj*lcj + gob_oj*loj + gob_cs*lcs + gob_os*los + bob*(lx-lp); 
	wcj_h = acj + gcb_cj*lcb + gob_cj*lob + gcj_cj*lcj + gcj_oj*loj + gcj_cs*lcs + gcj_os*los + bcj*(lx-lp); 
	woj_h = aoj + gcb_oj*lcb + gob_oj*lob + gcj_oj*lcj + goj_oj*loj + goj_cs*lcs + goj_os*los + boj*(lx-lp);
	wcs_h = acs + gcb_cs*lcb + gob_cs*lob + gcj_cs*lcj + goj_cs*loj + gcs_cs*lcs + gcs_os*los + bcs*(lx-lp);

	fit wcb wob wcj woj wcs / itsur covb outest=coef converge=.00001  maxit=1000;&lt;BR /&gt;            parms acb bcb  gcb_cb gcb_ob gcb_cj gcb_oj gcb_cs gcb_os
		  aob bob         gob_ob gob_cj gob_oj gob_cs gob_os
		  acj bcj                gcj_cj gcj_oj gcj_cs gcj_os
		  aoj boj                       goj_oj goj_cs goj_os
		  acs bcs                              gcs_cs gcs_os
 		  aos                                         gos_os;

run;
quit;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Feb 2022 18:19:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Interpretation-of-RESTRICT-output-and-LR-test/m-p/794853#M38997</guid>
      <dc:creator>liu6200</dc:creator>
      <dc:date>2022-02-07T18:19:33Z</dc:date>
    </item>
  </channel>
</rss>

