<?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: Ordered Probit Model - SAS QLIM in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Ordered-Probit-Model-SAS-QLIM/m-p/762137#M37212</link>
    <description>&lt;P&gt;Thank you Koen,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am interested in estimating the mean and std of the latent variable, and am comfortable setting some restrictions on the thresholds to do this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using QLIM as I believe it will do what I want.&amp;nbsp; However if there is a better procedure to do this in SAS please let me know.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The program I am using to understand what SAS is doing is below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;**************************************************************************&lt;BR /&gt;* Sample program which simulates a basic data set, and uses the&lt;BR /&gt;* restrict statement to allow estimation of the latent parameters&lt;BR /&gt;**************************************************************************;&lt;/P&gt;&lt;P&gt;* Simulates a single latent variable with specified mean and sd;&lt;BR /&gt;data temp;&lt;BR /&gt;call streaminit(235);&lt;BR /&gt;nits = 200;&lt;/P&gt;&lt;P&gt;latent_mean = 4;&lt;BR /&gt;latent_sd = 1.1;&lt;/P&gt;&lt;P&gt;do id = 1 to nits;&lt;BR /&gt;latent_y = rand("normal",latent_mean,latent_sd);&lt;/P&gt;&lt;P&gt;if latent_y &amp;lt; 1.5 then obs_likert_r = 1;&lt;BR /&gt;else if latent_y &amp;lt; 2.5 then obs_likert_r = 2;&lt;BR /&gt;else if latent_y &amp;lt; 3.5 then obs_likert_r = 3;&lt;BR /&gt;else if latent_y &amp;lt; 4.5 then obs_likert_r = 4;&lt;BR /&gt;else obs_likert_r = 5;&lt;BR /&gt;output;&lt;BR /&gt;end;&lt;/P&gt;&lt;P&gt;* Plots the latent variable as a check of the simulation;&lt;BR /&gt;proc sgplot data=temp;&lt;BR /&gt;histogram latent_y;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;* Plots the "observed Likert Ratings" as a check of the conversion;&lt;BR /&gt;proc freq data=temp;&lt;BR /&gt;table obs_likert_r;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;* Runs QLIM with restrict statment;&lt;/P&gt;&lt;P&gt;proc qlim data=temp;&lt;BR /&gt;endogenous obs_likert_r ~ discrete (dist=Probit);&lt;BR /&gt;model obs_likert_r = ; * Fits model with only intercept;&lt;BR /&gt;restrict _limit2=2.5;&lt;BR /&gt;restrict _limit4=4.5;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The output for the parameter estimates:&lt;/P&gt;&lt;DIV class="branch"&gt;&lt;DIV&gt;&lt;DIV align="center"&gt;Parameter EstimatesParameter DF Estimate StandardError t&amp;nbsp;Value ApproxPr &amp;gt; |t|Intercept_Limit2_Limit3_Limit4Restrict1Restrict2 &lt;TABLE cellspacing="0" cellpadding="5"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;3.856617&lt;/TD&gt;&lt;TD&gt;0.082268&lt;/TD&gt;&lt;TD&gt;46.88&lt;/TD&gt;&lt;TD&gt;&amp;lt;.0001&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;2.500000&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;3.665176&lt;/TD&gt;&lt;TD&gt;0.080374&lt;/TD&gt;&lt;TD&gt;45.60&lt;/TD&gt;&lt;TD&gt;&amp;lt;.0001&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;4.500000&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;-1&lt;/TD&gt;&lt;TD&gt;10.684632&lt;/TD&gt;&lt;TD&gt;6.768865&lt;/TD&gt;&lt;TD&gt;1.58&lt;/TD&gt;&lt;TD&gt;0.1147*&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;-1&lt;/TD&gt;&lt;TD&gt;9.731302&lt;/TD&gt;&lt;TD&gt;6.900138&lt;/TD&gt;&lt;TD&gt;1.41&lt;/TD&gt;&lt;TD&gt;0.1590*&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In this example, the estimate of the intercept is reasonable, but not as good as I would like.&lt;/P&gt;&lt;P&gt;The thresholds make sense&lt;/P&gt;&lt;P&gt;But I am not sure what the Restrict statements refer to as they are not part of the model.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your thoughts.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Dan&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 17 Aug 2021 18:04:27 GMT</pubDate>
    <dc:creator>Dan4</dc:creator>
    <dc:date>2021-08-17T18:04:27Z</dc:date>
    <item>
      <title>Ordered Probit Model - SAS QLIM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Ordered-Probit-Model-SAS-QLIM/m-p/761876#M37199</link>
      <description>&lt;P&gt;I would like to estimate the Mean and Standard Deviation of a Latent Variable using an Ordered Probit Model.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I simulated a simple data set, where the Latent Variable is normal (mean = 2), and created a "likert" ordinal variable with 5 categories labelled 1 to 5.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Using QLIM I am able to recover what I believe is the mean of the Latent Variable by placing restrictions on the thresholds ( Ie setting the lower threshold to 1.5 and the upper threshold to 4.5).&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The estimate of the mean is close (but seems to be underestimating the mean).&amp;nbsp; the Threshold values look reasonable.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The table Parameter Estimates includes two estimates that I am not sure what they refer to:&lt;/P&gt;&lt;P&gt;RESTRICT1 and RESTRICT2.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I wasn't able to find any explanation of these lines in the documentation.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any thoughts and pointers would be greatly appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dan&lt;/P&gt;</description>
      <pubDate>Mon, 16 Aug 2021 17:08:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Ordered-Probit-Model-SAS-QLIM/m-p/761876#M37199</guid>
      <dc:creator>Dan4</dc:creator>
      <dc:date>2021-08-16T17:08:06Z</dc:date>
    </item>
    <item>
      <title>Re: Ordered Probit Model - SAS QLIM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Ordered-Probit-Model-SAS-QLIM/m-p/762115#M37210</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Because you do&amp;nbsp;Ordered Data Modeling with a&amp;nbsp;&lt;SPAN style="font-family: inherit;"&gt;latent dependent variable, there are some inherent restrictions of course (like those on the limit parameters / thresholds for example).&lt;BR /&gt;I guess the RESTRICT variables are linked to that.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;If your data are simulated, you can maybe publish your code here.&lt;BR /&gt;Then I can probably tell you more.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;Koen&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Aug 2021 16:16:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Ordered-Probit-Model-SAS-QLIM/m-p/762115#M37210</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2021-08-17T16:16:29Z</dc:date>
    </item>
    <item>
      <title>Re: Ordered Probit Model - SAS QLIM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Ordered-Probit-Model-SAS-QLIM/m-p/762116#M37211</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;On top of my reply above, I add this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This usage note could be beneficial to you:&lt;/P&gt;
&lt;H2&gt;Usage Note&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;I&gt;22871:&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/I&gt;Types of logistic (or logit) models that can be fit using SAS®&lt;/H2&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/kb/22/871.html" target="_blank"&gt;https://support.sas.com/kb/22/871.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Tue, 17 Aug 2021 16:19:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Ordered-Probit-Model-SAS-QLIM/m-p/762116#M37211</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2021-08-17T16:19:33Z</dc:date>
    </item>
    <item>
      <title>Re: Ordered Probit Model - SAS QLIM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Ordered-Probit-Model-SAS-QLIM/m-p/762137#M37212</link>
      <description>&lt;P&gt;Thank you Koen,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am interested in estimating the mean and std of the latent variable, and am comfortable setting some restrictions on the thresholds to do this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using QLIM as I believe it will do what I want.&amp;nbsp; However if there is a better procedure to do this in SAS please let me know.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The program I am using to understand what SAS is doing is below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;**************************************************************************&lt;BR /&gt;* Sample program which simulates a basic data set, and uses the&lt;BR /&gt;* restrict statement to allow estimation of the latent parameters&lt;BR /&gt;**************************************************************************;&lt;/P&gt;&lt;P&gt;* Simulates a single latent variable with specified mean and sd;&lt;BR /&gt;data temp;&lt;BR /&gt;call streaminit(235);&lt;BR /&gt;nits = 200;&lt;/P&gt;&lt;P&gt;latent_mean = 4;&lt;BR /&gt;latent_sd = 1.1;&lt;/P&gt;&lt;P&gt;do id = 1 to nits;&lt;BR /&gt;latent_y = rand("normal",latent_mean,latent_sd);&lt;/P&gt;&lt;P&gt;if latent_y &amp;lt; 1.5 then obs_likert_r = 1;&lt;BR /&gt;else if latent_y &amp;lt; 2.5 then obs_likert_r = 2;&lt;BR /&gt;else if latent_y &amp;lt; 3.5 then obs_likert_r = 3;&lt;BR /&gt;else if latent_y &amp;lt; 4.5 then obs_likert_r = 4;&lt;BR /&gt;else obs_likert_r = 5;&lt;BR /&gt;output;&lt;BR /&gt;end;&lt;/P&gt;&lt;P&gt;* Plots the latent variable as a check of the simulation;&lt;BR /&gt;proc sgplot data=temp;&lt;BR /&gt;histogram latent_y;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;* Plots the "observed Likert Ratings" as a check of the conversion;&lt;BR /&gt;proc freq data=temp;&lt;BR /&gt;table obs_likert_r;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;* Runs QLIM with restrict statment;&lt;/P&gt;&lt;P&gt;proc qlim data=temp;&lt;BR /&gt;endogenous obs_likert_r ~ discrete (dist=Probit);&lt;BR /&gt;model obs_likert_r = ; * Fits model with only intercept;&lt;BR /&gt;restrict _limit2=2.5;&lt;BR /&gt;restrict _limit4=4.5;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The output for the parameter estimates:&lt;/P&gt;&lt;DIV class="branch"&gt;&lt;DIV&gt;&lt;DIV align="center"&gt;Parameter EstimatesParameter DF Estimate StandardError t&amp;nbsp;Value ApproxPr &amp;gt; |t|Intercept_Limit2_Limit3_Limit4Restrict1Restrict2 &lt;TABLE cellspacing="0" cellpadding="5"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;3.856617&lt;/TD&gt;&lt;TD&gt;0.082268&lt;/TD&gt;&lt;TD&gt;46.88&lt;/TD&gt;&lt;TD&gt;&amp;lt;.0001&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;2.500000&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;3.665176&lt;/TD&gt;&lt;TD&gt;0.080374&lt;/TD&gt;&lt;TD&gt;45.60&lt;/TD&gt;&lt;TD&gt;&amp;lt;.0001&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;4.500000&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;-1&lt;/TD&gt;&lt;TD&gt;10.684632&lt;/TD&gt;&lt;TD&gt;6.768865&lt;/TD&gt;&lt;TD&gt;1.58&lt;/TD&gt;&lt;TD&gt;0.1147*&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;-1&lt;/TD&gt;&lt;TD&gt;9.731302&lt;/TD&gt;&lt;TD&gt;6.900138&lt;/TD&gt;&lt;TD&gt;1.41&lt;/TD&gt;&lt;TD&gt;0.1590*&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In this example, the estimate of the intercept is reasonable, but not as good as I would like.&lt;/P&gt;&lt;P&gt;The thresholds make sense&lt;/P&gt;&lt;P&gt;But I am not sure what the Restrict statements refer to as they are not part of the model.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your thoughts.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Dan&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Aug 2021 18:04:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Ordered-Probit-Model-SAS-QLIM/m-p/762137#M37212</guid>
      <dc:creator>Dan4</dc:creator>
      <dc:date>2021-08-17T18:04:27Z</dc:date>
    </item>
    <item>
      <title>Re: Ordered Probit Model - SAS QLIM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Ordered-Probit-Model-SAS-QLIM/m-p/762140#M37213</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/130876"&gt;@Dan4&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think PROC QLIM (SAS/ETS) is the right choice.&lt;/P&gt;
&lt;P&gt;There's also a PROC HPQLIM (HP = High-Performance) and a PROC CQLIM (SAS VIYA Econometrics) but the latter 2 procedures have no added value for your case.&lt;/P&gt;
&lt;P&gt;You can also try PROC PROBIT (SAS/STAT) and PROC GLIMMIX (SAS/STAT) to see if you get closer to the expected result.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have to check what RESTRICT1 and RESTRICT2 are exactly representing and how they are calculated.&lt;/P&gt;
&lt;P&gt;Will do that tomorrow.&lt;/P&gt;
&lt;P&gt;Dinner time here in Western-Europe.&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kind regards,&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Tue, 17 Aug 2021 18:24:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Ordered-Probit-Model-SAS-QLIM/m-p/762140#M37213</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2021-08-17T18:24:22Z</dc:date>
    </item>
    <item>
      <title>Re: Ordered Probit Model - SAS QLIM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Ordered-Probit-Model-SAS-QLIM/m-p/762861#M37236</link>
      <description>&lt;P&gt;Thank you Koen,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I will check out PROC PROBIT and the others.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was able to get this running in R using oglmx, but would prefer SAS.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Looking forward to hearing about the RESTRICT statement.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Dan&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Aug 2021 15:03:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Ordered-Probit-Model-SAS-QLIM/m-p/762861#M37236</guid>
      <dc:creator>Dan4</dc:creator>
      <dc:date>2021-08-20T15:03:58Z</dc:date>
    </item>
    <item>
      <title>Re: Ordered Probit Model - SAS QLIM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Ordered-Probit-Model-SAS-QLIM/m-p/762930#M37240</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/130876"&gt;@Dan4&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When you impose restrictions on parameters using RESTRICT or BOUNDS statement, the RESTRICT1, RESTRICT2 parameters in the the parameter estimates output table are the Lagrange multipliers corresponding to the active restrictions. Since your code imposed two restrictions on the _Limit parameters, and both are actively imposed, you will get two lagrange multipliers parameters, namely RESTRICT1, and RESTRICT2.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The PROC QLIM documentation seems to have missed this information, but other SAS/ETS procedures with the RESTRICT/BOUNDS statement functionality has documentation on this, see for example in PROC AUTOREG documentation:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://go.documentation.sas.com/doc/en/pgmsascdc/v_016/etsug/etsug_autoreg_syntax14.htm" target="_blank"&gt;https://go.documentation.sas.com/doc/en/pgmsascdc/v_016/etsug/etsug_autoreg_syntax14.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Lagrange multipliers are reported in the "Parameter Estimates" table for all the active linear constraints. They are identified by the names&amp;nbsp;&lt;/SPAN&gt;&lt;CODE class="aa-varname"&gt;Restrict1&lt;/CODE&gt;&lt;SPAN&gt;,&amp;nbsp;&lt;/SPAN&gt;&lt;CODE class="aa-varname"&gt;Restrict2&lt;/CODE&gt;&lt;SPAN&gt;, and so on. The probabilities of these Lagrange multipliers are computed using a beta distribution (LaMotte&amp;nbsp;&lt;/SPAN&gt;&lt;A tabindex="0" href="https://go.documentation.sas.com/doc/en/pgmsascdc/v_016/etsug/etsug_autoreg_references.htm#etsug_autoreglamo_l94" target="_blank"&gt;1994&lt;/A&gt;&lt;SPAN&gt;). Nonactive (nonbinding) restrictions have no effect on the estimation results and are not noted in the output.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;The QLIM documentation should be updated with this information in the future.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I hope this helps.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Aug 2021 19:22:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Ordered-Probit-Model-SAS-QLIM/m-p/762930#M37240</guid>
      <dc:creator>SASCom1</dc:creator>
      <dc:date>2021-08-20T19:22:21Z</dc:date>
    </item>
    <item>
      <title>Re: Ordered Probit Model - SAS QLIM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Ordered-Probit-Model-SAS-QLIM/m-p/766458#M37471</link>
      <description>&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is very helpful, and helps me on my way.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My apologies for the late Thank You!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dan&lt;/P&gt;</description>
      <pubDate>Tue, 07 Sep 2021 18:48:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Ordered-Probit-Model-SAS-QLIM/m-p/766458#M37471</guid>
      <dc:creator>Dan4</dc:creator>
      <dc:date>2021-09-07T18:48:01Z</dc:date>
    </item>
    <item>
      <title>Re: Ordered Probit Model - SAS QLIM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Ordered-Probit-Model-SAS-QLIM/m-p/766607#M37473</link>
      <description>&lt;P&gt;You are welcome! and no problem:-)&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Sep 2021 15:13:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Ordered-Probit-Model-SAS-QLIM/m-p/766607#M37473</guid>
      <dc:creator>SASCom1</dc:creator>
      <dc:date>2021-09-08T15:13:42Z</dc:date>
    </item>
  </channel>
</rss>

