<?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: LASSO application in ordinal logistic regression in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/LASSO-application-in-ordinal-logistic-regression/m-p/314933#M16590</link>
    <description>&lt;P&gt;I wonder if you have looked at the HPGENSELECT procedure, which supports LASSO. &amp;nbsp;You didn't supply any data, but try to modify this code, which is taken from &lt;A href="http://support.sas.com/documentation/cdl/en/statug/68162/HTML/default/viewer.htm#statug_logistic_examples03.htm" target="_self"&gt;the LOGISTIC documentation for ordinal regression&lt;/A&gt; (Caution: untested! Didn't verify that this results in cumulative logit model.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data Cheese;
   do Additive = 1 to 4;
      do y = 1 to 9;
         input freq @@;
         output;
      end;
   end;
   label y='Taste Rating';
   datalines;
0  0  1  7  8  8 19  8  1
6  9 12 11  7  6  1  0  0
1  1  6  8 23  7  5  1  0
0  0  0  1  3  7 14 16 11
;

title 'Multiple Response Cheese Tasting Experiment';
proc hpgenselect data=Cheese plots=all;
   freq freq;
   class Additive(ref='4');
   model y=Additive / link=logit ;
   selection details=all method=lasso;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 28 Nov 2016 19:54:17 GMT</pubDate>
    <dc:creator>Rick_SAS</dc:creator>
    <dc:date>2016-11-28T19:54:17Z</dc:date>
    <item>
      <title>LASSO application in ordinal logistic regression</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/LASSO-application-in-ordinal-logistic-regression/m-p/314922#M16589</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I need to implement LASSO for variable selection in the cotext of an ordinal logistic regression.&lt;/P&gt;&lt;P&gt;I found the awesome command PROC GLMSELECT, but it does not apply to my case because my outcome is ordinal.&lt;/P&gt;&lt;P&gt;Please help!&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Claudia&lt;/P&gt;</description>
      <pubDate>Mon, 28 Nov 2016 18:56:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/LASSO-application-in-ordinal-logistic-regression/m-p/314922#M16589</guid>
      <dc:creator>cksuemoto</dc:creator>
      <dc:date>2016-11-28T18:56:47Z</dc:date>
    </item>
    <item>
      <title>Re: LASSO application in ordinal logistic regression</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/LASSO-application-in-ordinal-logistic-regression/m-p/314933#M16590</link>
      <description>&lt;P&gt;I wonder if you have looked at the HPGENSELECT procedure, which supports LASSO. &amp;nbsp;You didn't supply any data, but try to modify this code, which is taken from &lt;A href="http://support.sas.com/documentation/cdl/en/statug/68162/HTML/default/viewer.htm#statug_logistic_examples03.htm" target="_self"&gt;the LOGISTIC documentation for ordinal regression&lt;/A&gt; (Caution: untested! Didn't verify that this results in cumulative logit model.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data Cheese;
   do Additive = 1 to 4;
      do y = 1 to 9;
         input freq @@;
         output;
      end;
   end;
   label y='Taste Rating';
   datalines;
0  0  1  7  8  8 19  8  1
6  9 12 11  7  6  1  0  0
1  1  6  8 23  7  5  1  0
0  0  0  1  3  7 14 16 11
;

title 'Multiple Response Cheese Tasting Experiment';
proc hpgenselect data=Cheese plots=all;
   freq freq;
   class Additive(ref='4');
   model y=Additive / link=logit ;
   selection details=all method=lasso;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 28 Nov 2016 19:54:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/LASSO-application-in-ordinal-logistic-regression/m-p/314933#M16590</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2016-11-28T19:54:17Z</dc:date>
    </item>
    <item>
      <title>Re: LASSO application in ordinal logistic regression</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/LASSO-application-in-ordinal-logistic-regression/m-p/315269#M16610</link>
      <description>&lt;P&gt;Dear Rick&lt;/P&gt;&lt;P&gt;Thanks a lot, it seems that it is exactly what I need.&lt;/P&gt;&lt;P&gt;The only problem is that I have SAS 9.3, which does not have this command.&lt;/P&gt;&lt;P&gt;Any other option?&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Claudia&lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2016 17:16:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/LASSO-application-in-ordinal-logistic-regression/m-p/315269#M16610</guid>
      <dc:creator>cksuemoto</dc:creator>
      <dc:date>2016-11-29T17:16:27Z</dc:date>
    </item>
  </channel>
</rss>

