BookmarkSubscribeRSS Feed
aruku
Calcite | Level 5

Our process has been failing because of the below warning. I have tried different options but am not able to resolve this. Can someone please help?

SAS Procedure start /*****************/

MPRINT(BOOTLOOP):   proc univariate noprint data=wout_run2;

MPRINT(BOOTLOOP):   ods output ParameterEstimates=zout_run2 (where=(Parameter='Mean') keep=parameter estimate);


MPRINT(BOOTLOOP):   histogram / weibull (cinitial=1) nochart;

MPRINT(BOOTLOOP):   var raw_value;


MPRINT(BOOTLOOP):   run;

Warning start /****************/

NOTE: No fitted curves were drawn on the histogram for GMB_RAW since its standard deviation is zero.


WARNING: Output 'ParameterEstimates' 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.


NOTE: PROCEDURE UNIVARIATE used (Total process time):

2 REPLIES 2
PGStats
Opal | Level 21

There are two separate errors.

The one about the standard deviation being 0 points to a data error. Check the raw_value values in wout_run2.

With the noprint option in proc univariate there cannot be any ODS output produced, including ParameterEstimates. Remove the noprint option. You can however use ODS SELECT NONE; to get rid of any printed output, if that's what you want.

PG

PG
aruku
Calcite | Level 5

Thanks for the quick response. Let me try and will update the thread. Thanks.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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
  • 2 replies
  • 986 views
  • 0 likes
  • 2 in conversation