<?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: How to suppress &amp;quot;The selected Model...&amp;quot; Message in PROC GLMSELECT in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-suppress-quot-The-selected-Model-quot-Message-in-PROC/m-p/473575#M21170</link>
    <description>Hi Cynthia,&lt;BR /&gt;&lt;BR /&gt;Sorry I didn't provide you with the code. Anyways, you gave me some valuable insights... I actually had tried ods select before, but since I didn't know how to find the name of the plot, it didn't work.&lt;BR /&gt;&lt;BR /&gt;I just added the line&lt;BR /&gt;ods select CoefficientPlot ;&lt;BR /&gt;and it worked perfectly!! Thanks a lot!</description>
    <pubDate>Wed, 27 Jun 2018 01:00:11 GMT</pubDate>
    <dc:creator>marianaalcos</dc:creator>
    <dc:date>2018-06-27T01:00:11Z</dc:date>
    <item>
      <title>How to suppress "The selected Model..." Message in PROC GLMSELECT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-suppress-quot-The-selected-Model-quot-Message-in-PROC/m-p/473555#M21164</link>
      <description>&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to run a LASSO REGRESSION using the whole path, but I want to display only the plots. I was able to get rid of everything, but the message displaying "The selected model is...." (see pic below). I used ods exclude to exclude all the tables but I could not find the table/argument that corresponds to that message (and now it's looking ugly in my report).&lt;/P&gt;&lt;P&gt;How do I do that? Check pic and code below !&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;title 'Part 2 - Lasso Regression';
title2 'Printing the whole Lasso Path first';

proc glmselect data=data   plots(unpack stepaxis=normb)=coefficients ;
	model y=x1-x20 / 
		selection=lasso (stop=none); 
		ods exclude ANOVA SelectionSummary SelectedEffects 
		ParameterEstimates ModelInfo Dimensions FitStatistics ModelInfo 
		NObs ; /*suppresses reports and displays only plot */
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Captura de Tela 2018-06-26 às 11.52.26 AM.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/21425i4716DE11B6B3BDBB/image-size/large?v=v2&amp;amp;px=999" role="button" title="Captura de Tela 2018-06-26 às 11.52.26 AM.png" alt="Captura de Tela 2018-06-26 às 11.52.26 AM.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 21:56:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-suppress-quot-The-selected-Model-quot-Message-in-PROC/m-p/473555#M21164</guid>
      <dc:creator>marianaalcos</dc:creator>
      <dc:date>2018-06-26T21:56:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to suppress "The selected Model..." Message in PROC GLMSELECT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-suppress-quot-The-selected-Model-quot-Message-in-PROC/m-p/473574#M21169</link>
      <description>&lt;P&gt;Hi: Do you get the same results if you use an ODS SELECT to select only the graph object you want? What happens if you use use ODS NOPTITLE? That should get rid of "The GLMSELECT Procedure" -- but I'm not sure whether it will get rid of "Selected Model" too.&lt;BR /&gt;&lt;BR /&gt; If you turn ODS TRACE ON/ LABEL; before your current step, you should see ALL the output objects that have not been excluded. How many output objects are you going to get based on ODS TRACE ON results in the log? Is GLMSELECT one of the procedures that ends with a QUIT and not just a RUN? I find it interesting that you are getting this note AFTER the graph and it looks like AFTER a page break too. Do you have GTITLE and GFOOTNOTE options turned on? I wonder if that note is supposed to be part of the graph but is thrown outside by a NOGTITLE or NOGFOOTNOTE, since you didn't show the top of the image, it's hard to guess. Where do your title statements appear -- inside the box of the graph, or outside the box of the graph?&lt;BR /&gt;&lt;BR /&gt;You didn't post any data, so nobody can test your code. However, when I ran a test using SASHELP.BASEBALL and used ODS SELECT instead of ODS EXCLUDE and just selected the Criterion Plot, which is what I think you want, I did not get that message. Here's what I tried:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;title 'Part 2 - Lasso Regression';
title2 'Printing the whole Lasso Path first';

ods noptitle;
ods html path='c:\temp' (url=none) file='want_c_plot.html';
ods select ChooseCriterionPlot;

proc glmselect data=sashelp.baseball   
     plots(unpack stepaxis=normb)=coefficients ;
	 class league division;
     model Salary = nAtBat nHits nHome nRuns nRBI nBB
                 yrMajor crAtBat crHits crHome crRuns crRbi
                 crBB league division nOuts nAssts nError /
		selection=lasso (stop=none); 
run;
ods html close;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;Cynthia&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jun 2018 00:29:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-suppress-quot-The-selected-Model-quot-Message-in-PROC/m-p/473574#M21169</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2018-06-27T00:29:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to suppress "The selected Model..." Message in PROC GLMSELECT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-suppress-quot-The-selected-Model-quot-Message-in-PROC/m-p/473575#M21170</link>
      <description>Hi Cynthia,&lt;BR /&gt;&lt;BR /&gt;Sorry I didn't provide you with the code. Anyways, you gave me some valuable insights... I actually had tried ods select before, but since I didn't know how to find the name of the plot, it didn't work.&lt;BR /&gt;&lt;BR /&gt;I just added the line&lt;BR /&gt;ods select CoefficientPlot ;&lt;BR /&gt;and it worked perfectly!! Thanks a lot!</description>
      <pubDate>Wed, 27 Jun 2018 01:00:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-suppress-quot-The-selected-Model-quot-Message-in-PROC/m-p/473575#M21170</guid>
      <dc:creator>marianaalcos</dc:creator>
      <dc:date>2018-06-27T01:00:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to suppress "The selected Model..." Message in PROC GLMSELECT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-suppress-quot-The-selected-Model-quot-Message-in-PROC/m-p/473726#M21185</link>
      <description>&lt;P&gt;I am glad that Cynthia was able to help you!&amp;nbsp; In cases where ODS SELECT/EXCLUDE are not sufficient, you can use the ODS DOCUMENT as is illustrated in this blog.&amp;nbsp;&amp;nbsp;&lt;A href="https://blogs.sas.com/content/graphicallyspeaking/2016/11/23/advanced-ods-graphics-remove-ods-subtitles/" target="_blank"&gt;https://blogs.sas.com/content/graphicallyspeaking/2016/11/23/advanced-ods-graphics-remove-ods-subtitles/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jun 2018 13:36:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-suppress-quot-The-selected-Model-quot-Message-in-PROC/m-p/473726#M21185</guid>
      <dc:creator>WarrenKuhfeld</dc:creator>
      <dc:date>2018-06-27T13:36:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to suppress "The selected Model..." Message in PROC GLMSELECT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-suppress-quot-The-selected-Model-quot-Message-in-PROC/m-p/473881#M21197</link>
      <description>Thank you Warren! That is helpful !!!</description>
      <pubDate>Wed, 27 Jun 2018 19:12:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-to-suppress-quot-The-selected-Model-quot-Message-in-PROC/m-p/473881#M21197</guid>
      <dc:creator>marianaalcos</dc:creator>
      <dc:date>2018-06-27T19:12:25Z</dc:date>
    </item>
  </channel>
</rss>

