<?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 Proc GLMselect in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Proc-GLMselect/m-p/717836#M27551</link>
    <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I would like to save the output of the proc glmselect in a separate file. Specifically, I want to create a file containing the selected variables in columns (the estimates of their coefficients that are provided in the result widow). My code is i.e.&lt;/P&gt;&lt;P&gt;proc glmselect data=&amp;amp;infile plot=all seed=123;&lt;BR /&gt;model &amp;amp;depvar=indepvar&lt;BR /&gt;/ selection=LASSO( stop=none choose=cvex);&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;I know I can use ods output paramterestimates, however I would like to get a result compared to the outest statement in proc reg. My Variables should be listed in single columns.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much for an answer.&lt;/P&gt;</description>
    <pubDate>Tue, 09 Feb 2021 10:53:58 GMT</pubDate>
    <dc:creator>DomUk</dc:creator>
    <dc:date>2021-02-09T10:53:58Z</dc:date>
    <item>
      <title>Proc GLMselect</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-GLMselect/m-p/717836#M27551</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I would like to save the output of the proc glmselect in a separate file. Specifically, I want to create a file containing the selected variables in columns (the estimates of their coefficients that are provided in the result widow). My code is i.e.&lt;/P&gt;&lt;P&gt;proc glmselect data=&amp;amp;infile plot=all seed=123;&lt;BR /&gt;model &amp;amp;depvar=indepvar&lt;BR /&gt;/ selection=LASSO( stop=none choose=cvex);&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;I know I can use ods output paramterestimates, however I would like to get a result compared to the outest statement in proc reg. My Variables should be listed in single columns.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much for an answer.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Feb 2021 10:53:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-GLMselect/m-p/717836#M27551</guid>
      <dc:creator>DomUk</dc:creator>
      <dc:date>2021-02-09T10:53:58Z</dc:date>
    </item>
    <item>
      <title>Re: Proc GLMselect</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-GLMselect/m-p/717842#M27552</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/368433"&gt;@DomUk&lt;/a&gt;&amp;nbsp;and welcome to the SAS Support Communities!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Would a transposed version of the &lt;FONT face="courier new,courier"&gt;ParameterEstimates&lt;/FONT&gt; ODS output dataset come close to what you want?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods output parameterestimates=est;

proc glmselect ...;
...
run;

proc transpose data=est out=want(drop=_name_);
var estimate;
id effect;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 09 Feb 2021 11:27:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-GLMselect/m-p/717842#M27552</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2021-02-09T11:27:33Z</dc:date>
    </item>
    <item>
      <title>Re: Proc GLMselect</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-GLMselect/m-p/717936#M27555</link>
      <description>Thank you very much!</description>
      <pubDate>Tue, 09 Feb 2021 15:55:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-GLMselect/m-p/717936#M27555</guid>
      <dc:creator>DomUk</dc:creator>
      <dc:date>2021-02-09T15:55:08Z</dc:date>
    </item>
  </channel>
</rss>

