BookmarkSubscribeRSS Feed
data_null__
Jade | Level 19

 

 

I know why I'm getting the message but why should PROC MEANS care about that.  

 

 

ods select none;
 proc means data=M_STATS_IN_ROWS_03_sl N MEAN STDDEV MEDIAN MIN MAX alpha=.1 completetypes stackodsoutput;
 class xtrt / order=data preloadfmt mlf missing;
 var weight;
 ods output summary=M_STATS_IN_ROWS_03_cvars(drop=_control_ nobs rename=(variable=_variable_));
 run;
WARNING: An ALPHA value has been provided without requesting confidence limits.
NOTE: The data set WORK.M_STATS_IN_ROWS_03_CVARS has 3 observations and 8 variables.
NOTE: There were 19 observations read from the data set WORK.M_STATS_IN_ROWS_03_SL.
1 REPLY 1
ballardw
Super User

Since the only purpose of Alpha from the procedures point of view affects creation of confidence intervals I put this warning in the "helpful reminder" category. Sort of assuming you intended to request confidence limits but just forgot the request.

 

 

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 804 views
  • 2 likes
  • 2 in conversation