<?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: PROC GLMSELECT testing incomplete in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/PROC-GLMSELECT-testing-incomplete/m-p/808149#M33667</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/423084"&gt;@mal6508&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Here is some code, intended to take a dataset, apply a marker variable called "selected" which identifies records lacking a sale price as test data, and then use the rest of the data to create a model to predict saleprice values.&amp;nbsp; This much seems to work.&amp;nbsp; I also would like the procedure to use the test data to perform a test on the model thus created, but this does not seem to work, and I can't figure out why.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I know you are new here, &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/423084"&gt;@mal6508&lt;/a&gt; , but saying something doesn't work, and then not explaining, never is helpful. We don't know what didn't work and so we can't tell you what to do to make it work. You need to SHOW US what the problem is.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If there are errors in the log, then SHOW US the log for the step (DATA step or PROC) that didn't work. We need to see the entire log for that step, not selected parts of the log. We need to see every line in the log for that step, every single line, every single character. Copy the log for that step as text and it into your reply by clicking on the &amp;lt;/&amp;gt; icon and paste it into the window that appears.&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="2021-11-26 08_27_29-Reply to Message - SAS Support Communities — Mozilla Firefox.png" style="width: 859px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/66123iA4EF494F9CA0F6EE/image-size/large?v=v2&amp;amp;px=999" role="button" title="2021-11-26 08_27_29-Reply to Message - SAS Support Communities — Mozilla Firefox.png" alt="2021-11-26 08_27_29-Reply to Message - SAS Support Communities — Mozilla Firefox.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the output doesn't seem right to you, then SHOW US the output (screen capture is fine), and explain why you think it is wrong and explain what you think the right answer should be.&lt;/P&gt;</description>
    <pubDate>Sat, 16 Apr 2022 10:16:49 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2022-04-16T10:16:49Z</dc:date>
    <item>
      <title>PROC GLMSELECT testing incomplete</title>
      <link>https://communities.sas.com/t5/New-SAS-User/PROC-GLMSELECT-testing-incomplete/m-p/808137#M33665</link>
      <description>&lt;P&gt;Here is some code, intended to take a dataset, apply a marker variable called "selected" which identifies records lacking a sale price as test data, and then use the rest of the data to create a model to predict saleprice values.&amp;nbsp; This much seems to work.&amp;nbsp; I also would like the procedure to use the test data to perform a test on the model thus created, but this does not seem to work, and I can't figure out why.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data dt;&lt;BR /&gt;set miout2 (obs=1670);&lt;BR /&gt;if saleprice=. then selected=0; else selected=1;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;ods graphics on;&lt;/P&gt;&lt;P&gt;proc glmselect data=dt plots=all;&lt;BR /&gt;&amp;nbsp; &amp;nbsp;partition rolevar=selected(test='0' train='1');&lt;BR /&gt;&amp;nbsp; &amp;nbsp;class [lots of variables];&lt;BR /&gt;&amp;nbsp; &amp;nbsp;model saleprice = [even more variables]&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;/ selection =lar(choose=cv stop=none) cvmethod=random(10) details=all;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Apr 2022 00:54:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/PROC-GLMSELECT-testing-incomplete/m-p/808137#M33665</guid>
      <dc:creator>mal6508</dc:creator>
      <dc:date>2022-04-16T00:54:55Z</dc:date>
    </item>
    <item>
      <title>Re: PROC GLMSELECT testing incomplete</title>
      <link>https://communities.sas.com/t5/New-SAS-User/PROC-GLMSELECT-testing-incomplete/m-p/808149#M33667</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/423084"&gt;@mal6508&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Here is some code, intended to take a dataset, apply a marker variable called "selected" which identifies records lacking a sale price as test data, and then use the rest of the data to create a model to predict saleprice values.&amp;nbsp; This much seems to work.&amp;nbsp; I also would like the procedure to use the test data to perform a test on the model thus created, but this does not seem to work, and I can't figure out why.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I know you are new here, &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/423084"&gt;@mal6508&lt;/a&gt; , but saying something doesn't work, and then not explaining, never is helpful. We don't know what didn't work and so we can't tell you what to do to make it work. You need to SHOW US what the problem is.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If there are errors in the log, then SHOW US the log for the step (DATA step or PROC) that didn't work. We need to see the entire log for that step, not selected parts of the log. We need to see every line in the log for that step, every single line, every single character. Copy the log for that step as text and it into your reply by clicking on the &amp;lt;/&amp;gt; icon and paste it into the window that appears.&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="2021-11-26 08_27_29-Reply to Message - SAS Support Communities — Mozilla Firefox.png" style="width: 859px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/66123iA4EF494F9CA0F6EE/image-size/large?v=v2&amp;amp;px=999" role="button" title="2021-11-26 08_27_29-Reply to Message - SAS Support Communities — Mozilla Firefox.png" alt="2021-11-26 08_27_29-Reply to Message - SAS Support Communities — Mozilla Firefox.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the output doesn't seem right to you, then SHOW US the output (screen capture is fine), and explain why you think it is wrong and explain what you think the right answer should be.&lt;/P&gt;</description>
      <pubDate>Sat, 16 Apr 2022 10:16:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/PROC-GLMSELECT-testing-incomplete/m-p/808149#M33667</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-04-16T10:16:49Z</dc:date>
    </item>
    <item>
      <title>Re: PROC GLMSELECT testing incomplete</title>
      <link>https://communities.sas.com/t5/New-SAS-User/PROC-GLMSELECT-testing-incomplete/m-p/808156#M33668</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Seconding with&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10892"&gt;@PaigeMiller&lt;/a&gt;&amp;nbsp;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also ... I cannot see anything wrong at first sight, but you may double-check with the documentation :&lt;/P&gt;
&lt;P&gt;SAS® 9.4 and SAS® Viya® 3.5 Programming Documentation | SAS 9.4 / Viya 3.5&lt;BR /&gt;SAS/STAT User's Guide&lt;BR /&gt;The GLMSELECT Procedure&lt;BR /&gt;&lt;A href="https://go.documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/statug/statug_glmselect_overview01.htm" target="_blank"&gt;https://go.documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/statug/statug_glmselect_overview01.htm&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>Sat, 16 Apr 2022 10:57:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/PROC-GLMSELECT-testing-incomplete/m-p/808156#M33668</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2022-04-16T10:57:05Z</dc:date>
    </item>
  </channel>
</rss>

