<?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: GLMSELECT Suggestions? in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/GLMSELECT-Suggestions/m-p/475599#M24767</link>
    <description>&lt;P&gt;Can you use the at most succinct code to test your data at first place ?&lt;/P&gt;
&lt;P&gt;something like&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;proc glmselect data = sas_3.combined_sorted&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;class i_Day&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;model i_50503 = i_Open--i_23604&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;/ selection=stepwise ;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;run;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;After that ,add some more option you need ,and see which one generate the ERROR information.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 05 Jul 2018 12:51:52 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2018-07-05T12:51:52Z</dc:date>
    <item>
      <title>GLMSELECT Suggestions?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/GLMSELECT-Suggestions/m-p/475079#M24730</link>
      <description>&lt;P&gt;So many options, hard to decide what to do.&amp;nbsp; Any bottom-line suggestions?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Tentatively the following looks promising:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;/selection=lasso stop=none choose=cvex cvmethod=random (10) modelaverage refit showpvals;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Jul 2018 01:05:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/GLMSELECT-Suggestions/m-p/475079#M24730</guid>
      <dc:creator>NKormanik</dc:creator>
      <dc:date>2018-07-03T01:05:08Z</dc:date>
    </item>
    <item>
      <title>Re: GLMSELECT Suggestions?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/GLMSELECT-Suggestions/m-p/475137#M24732</link>
      <description>&lt;P&gt;Use PROC PLS if you have lots of correlated X variables. PLS handles the correlation better than any method using OLS or variable selection methods.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But in response to your exact question, the options in GLMSELECT (and every other procedure) are all to be used in specific situations and not in other sitautions, and you've given us no information about your situation.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Jul 2018 11:10:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/GLMSELECT-Suggestions/m-p/475137#M24732</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2018-07-03T11:10:25Z</dc:date>
    </item>
    <item>
      <title>Re: GLMSELECT Suggestions?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/GLMSELECT-Suggestions/m-p/475157#M24734</link>
      <description>&lt;P&gt;Agree with Paige.&lt;/P&gt;
&lt;P&gt;After running PROC PLS, you could get a table of variable importance ,pick up variables which&amp;nbsp; VIP&amp;gt;0.8&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Jul 2018 12:31:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/GLMSELECT-Suggestions/m-p/475157#M24734</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2018-07-03T12:31:38Z</dc:date>
    </item>
    <item>
      <title>Re: GLMSELECT Suggestions?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/GLMSELECT-Suggestions/m-p/475581#M24765</link>
      <description>Suggestions please....&lt;BR /&gt;&lt;BR /&gt;Before I head over to Proc PLS, I'd like to at least come up with some&lt;BR /&gt;results using GLMSELECT.  Tried the following and received error:&lt;BR /&gt;&lt;BR /&gt;ERROR: No sample yielded a valid model.&lt;BR /&gt;&lt;BR /&gt;This was the code I used:&lt;BR /&gt;&lt;BR /&gt;proc glmselect data = sas_3.combined_sorted&lt;BR /&gt;plot=all;&lt;BR /&gt;class i_Day&lt;BR /&gt;/ split&lt;BR /&gt;;&lt;BR /&gt;model i_50503 = i_Open--i_23604&lt;BR /&gt;/ selection=stepwise&lt;BR /&gt;select=cv&lt;BR /&gt;cvmethod=split(10)&lt;BR /&gt;cvdetails=all&lt;BR /&gt;choose=validate&lt;BR /&gt;stop=press&lt;BR /&gt;drop=competitive&lt;BR /&gt;hierarchy=none&lt;BR /&gt;showpvalues&lt;BR /&gt;stb&lt;BR /&gt;stats=(adjrsq aic aicc ase bic cp fvalue press rsquare sbc sl)&lt;BR /&gt;details=all&lt;BR /&gt;;&lt;BR /&gt;modelaverage&lt;BR /&gt;sampling=srs&lt;BR /&gt;tables=all&lt;BR /&gt;refit;&lt;BR /&gt;run;&lt;BR /&gt;</description>
      <pubDate>Thu, 05 Jul 2018 11:24:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/GLMSELECT-Suggestions/m-p/475581#M24765</guid>
      <dc:creator>NKormanik</dc:creator>
      <dc:date>2018-07-05T11:24:15Z</dc:date>
    </item>
    <item>
      <title>Re: GLMSELECT Suggestions?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/GLMSELECT-Suggestions/m-p/475588#M24766</link>
      <description>&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;ERROR: No sample yielded a valid model.&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;How can we possibly help? You haven't explained what you are trying to do, and we don't have your data. Even worse, I have very little experience with GLMSELECT and lots of experience with PLS.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jul 2018 12:09:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/GLMSELECT-Suggestions/m-p/475588#M24766</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2018-07-05T12:09:51Z</dc:date>
    </item>
    <item>
      <title>Re: GLMSELECT Suggestions?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/GLMSELECT-Suggestions/m-p/475599#M24767</link>
      <description>&lt;P&gt;Can you use the at most succinct code to test your data at first place ?&lt;/P&gt;
&lt;P&gt;something like&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;proc glmselect data = sas_3.combined_sorted&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;class i_Day&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;model i_50503 = i_Open--i_23604&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;/ selection=stepwise ;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;run;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;After that ,add some more option you need ,and see which one generate the ERROR information.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jul 2018 12:51:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/GLMSELECT-Suggestions/m-p/475599#M24767</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2018-07-05T12:51:52Z</dc:date>
    </item>
    <item>
      <title>Re: GLMSELECT Suggestions?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/GLMSELECT-Suggestions/m-p/475869#M24783</link>
      <description>&lt;P&gt;Thanks Ksharp, and all others here.&amp;nbsp; You folks are wonderful.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jul 2018 23:56:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/GLMSELECT-Suggestions/m-p/475869#M24783</guid>
      <dc:creator>NKormanik</dc:creator>
      <dc:date>2018-07-05T23:56:47Z</dc:date>
    </item>
  </channel>
</rss>

