<?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 plots are not created in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/plots-are-not-created/m-p/510668#M73015</link>
    <description>&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The PLOTS for my analysis cannot be created. I get the following error:&lt;/P&gt;&lt;DIV class="sasWarning"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;&lt;DIV class="sasWarning"&gt;&lt;EM&gt;WARNING: Output 'ObservedByPredicted' was not created. Make sure that the output object name, label, or path is spelled correctly.&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;&lt;EM&gt;Also, verify that the appropriate procedure options are used to produce the requested output object. For example, verify&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;&lt;EM&gt;that the NOPRINT option is not used.&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;&lt;EM&gt;WARNING: Output 'RStudentByPredicted' was not created. Make sure that the output object name, label, or path is spelled correctly.&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;&lt;EM&gt;Also, verify that the appropriate procedure options are used to produce the requested output object. For example, verify&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;&lt;EM&gt;that the NOPRINT option is not used.&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;&lt;EM&gt;WARNING: Output 'ResidualPlot' was not created. Make sure that the output object name, label, or path is spelled correctly. Also,&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;&lt;EM&gt;verify that the appropriate procedure options are used to produce the requested output object. For example, verify that&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;&lt;EM&gt;the NOPRINT option is not used.&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;&lt;EM&gt;WARNING: Output 'DiagnosticsPanel' was not created. Make sure that the output object name, label, or path is spelled correctly.&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;&lt;EM&gt;Also, verify that the appropriate procedure options are used to produce the requested output object. For example, verify&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;&lt;EM&gt;that the NOPRINT option is not used.&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;Here is my code:&lt;BR /&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods noproctitle;
ods graphics / imagemap=on;

proc glmselect data=JORGE.ANLOC outdesign(addinputvars)=JORGE.reg_design 
		plots=(criterionpanel(unpack) coefficientpanel(unpack));
	model TP2P=Local EmeMarket DevMarket GICS10 GICS15 GICS20 GICS30 GICS35 GICS40 
		GICS45 GICS50 GICS55 GICS60 FinCrisis Gender An_Exp An_Pos / showpvalues 
		selection=stepwise
    
   (slentry=0.1 slstay=0.1 select=sl stop=adjrsq choose=adjrsq) 
		stats=(adjrsq rsquare);
run;

proc reg data=JORGE.reg_design alpha=0.01 plots(only 
		maxpoints=10000)=(diagnostics residuals rstudentbypredicted 
		observedbypredicted);
	ods select ParameterEstimates SpecTest DiagnosticsPanel ResidualPlot 
		RStudentByPredicted ObservedByPredicted;
	model TP2P=&amp;amp;_GLSMOD / stb clb spec;
	run;
quit;

proc delete data=JORGE.reg_design;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;The PROC GLMSELECT works perfekt. The problem seems to be in the proc reg part. I checked the warnings but could not find the problem. I tried the code with&amp;nbsp;a random&amp;nbsp;(smaller) sample and it worked perfectly. But with my original sample it doesn't work (even when reducing the maxpoints).&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;Could anyone help?&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;&amp;nbsp;&lt;/DIV&gt;</description>
    <pubDate>Tue, 06 Nov 2018 02:36:03 GMT</pubDate>
    <dc:creator>jozuleta</dc:creator>
    <dc:date>2018-11-06T02:36:03Z</dc:date>
    <item>
      <title>plots are not created</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/plots-are-not-created/m-p/510668#M73015</link>
      <description>&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The PLOTS for my analysis cannot be created. I get the following error:&lt;/P&gt;&lt;DIV class="sasWarning"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;&lt;DIV class="sasWarning"&gt;&lt;EM&gt;WARNING: Output 'ObservedByPredicted' was not created. Make sure that the output object name, label, or path is spelled correctly.&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;&lt;EM&gt;Also, verify that the appropriate procedure options are used to produce the requested output object. For example, verify&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;&lt;EM&gt;that the NOPRINT option is not used.&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;&lt;EM&gt;WARNING: Output 'RStudentByPredicted' was not created. Make sure that the output object name, label, or path is spelled correctly.&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;&lt;EM&gt;Also, verify that the appropriate procedure options are used to produce the requested output object. For example, verify&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;&lt;EM&gt;that the NOPRINT option is not used.&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;&lt;EM&gt;WARNING: Output 'ResidualPlot' was not created. Make sure that the output object name, label, or path is spelled correctly. Also,&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;&lt;EM&gt;verify that the appropriate procedure options are used to produce the requested output object. For example, verify that&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;&lt;EM&gt;the NOPRINT option is not used.&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;&lt;EM&gt;WARNING: Output 'DiagnosticsPanel' was not created. Make sure that the output object name, label, or path is spelled correctly.&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;&lt;EM&gt;Also, verify that the appropriate procedure options are used to produce the requested output object. For example, verify&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;&lt;EM&gt;that the NOPRINT option is not used.&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;Here is my code:&lt;BR /&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods noproctitle;
ods graphics / imagemap=on;

proc glmselect data=JORGE.ANLOC outdesign(addinputvars)=JORGE.reg_design 
		plots=(criterionpanel(unpack) coefficientpanel(unpack));
	model TP2P=Local EmeMarket DevMarket GICS10 GICS15 GICS20 GICS30 GICS35 GICS40 
		GICS45 GICS50 GICS55 GICS60 FinCrisis Gender An_Exp An_Pos / showpvalues 
		selection=stepwise
    
   (slentry=0.1 slstay=0.1 select=sl stop=adjrsq choose=adjrsq) 
		stats=(adjrsq rsquare);
run;

proc reg data=JORGE.reg_design alpha=0.01 plots(only 
		maxpoints=10000)=(diagnostics residuals rstudentbypredicted 
		observedbypredicted);
	ods select ParameterEstimates SpecTest DiagnosticsPanel ResidualPlot 
		RStudentByPredicted ObservedByPredicted;
	model TP2P=&amp;amp;_GLSMOD / stb clb spec;
	run;
quit;

proc delete data=JORGE.reg_design;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;The PROC GLMSELECT works perfekt. The problem seems to be in the proc reg part. I checked the warnings but could not find the problem. I tried the code with&amp;nbsp;a random&amp;nbsp;(smaller) sample and it worked perfectly. But with my original sample it doesn't work (even when reducing the maxpoints).&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;Could anyone help?&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Tue, 06 Nov 2018 02:36:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/plots-are-not-created/m-p/510668#M73015</guid>
      <dc:creator>jozuleta</dc:creator>
      <dc:date>2018-11-06T02:36:03Z</dc:date>
    </item>
    <item>
      <title>Re: plots are not created</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/plots-are-not-created/m-p/510685#M73016</link>
      <description>&lt;P&gt;Try with maxpoints=none.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Nov 2018 04:27:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/plots-are-not-created/m-p/510685#M73016</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2018-11-06T04:27:12Z</dc:date>
    </item>
  </channel>
</rss>

