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.

 

 

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 1048 views
  • 2 likes
  • 2 in conversation