BookmarkSubscribeRSS Feed
jozuleta
Obsidian | Level 7

Hi experts,

 

The PLOTS for my analysis cannot be created. I get the following error:

 
WARNING: Output 'ObservedByPredicted' was not created. Make sure that the output object name, label, or path is spelled correctly.
Also, verify that the appropriate procedure options are used to produce the requested output object. For example, verify
that the NOPRINT option is not used.
WARNING: Output 'RStudentByPredicted' was not created. Make sure that the output object name, label, or path is spelled correctly.
Also, verify that the appropriate procedure options are used to produce the requested output object. For example, verify
that the NOPRINT option is not used.
WARNING: Output 'ResidualPlot' was not created. Make sure that the output object name, label, or path is spelled correctly. Also,
verify that the appropriate procedure options are used to produce the requested output object. For example, verify that
the NOPRINT option is not used.
WARNING: Output 'DiagnosticsPanel' was not created. Make sure that the output object name, label, or path is spelled correctly.
Also, verify that the appropriate procedure options are used to produce the requested output object. For example, verify
that the NOPRINT option is not used.
 
 
Here is my code:
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=&_GLSMOD / stb clb spec;
	run;
quit;

proc delete data=JORGE.reg_design;
run;
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 a random (smaller) sample and it worked perfectly. But with my original sample it doesn't work (even when reducing the maxpoints).
 
Could anyone help?
 
1 REPLY 1
PGStats
Opal | Level 21

Try with maxpoints=none.

 

 

PG

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 1 reply
  • 964 views
  • 0 likes
  • 2 in conversation