Is there any option to mention decimal places individually in Proc means?
Like if max dec=3 is mentioned in Proc means, it gives 3 decimal values for all the summary statistics. Instead, I need 4 decimal for Mean, Min Med and max 3 decimal places. can this be done?
Thanks
@SaranyaSundar wrote:
Is there any option to mention decimal places individually in Proc means?
Like if max dec=3 is mentioned in Proc means, it gives 3 decimal values for all the summary statistics. Instead, I need 4 decimal for Mean, Min Med and max 3 decimal places. can this be done?
Thanks
Likely your best approach would be to use Proc Means to generate an output data set with the OUT statement and then use Proc Print/Report/Tabulate to display the results where can control display formats per variable.
Or possibly go straight to Proc Report or Tabulate .
You can try the maxdec option as below
proc means maxdec=2;var WEIGHT HEIGHT;
Title 'Example 1b - PROC MEANS, limit decimals, specify variables'
run;
@SaranyaSundar wrote:
Is there any option to mention decimal places individually in Proc means?
Like if max dec=3 is mentioned in Proc means, it gives 3 decimal values for all the summary statistics. Instead, I need 4 decimal for Mean, Min Med and max 3 decimal places. can this be done?
Thanks
Likely your best approach would be to use Proc Means to generate an output data set with the OUT statement and then use Proc Print/Report/Tabulate to display the results where can control display formats per variable.
Or possibly go straight to Proc Report or Tabulate .
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.
Find more tutorials on the SAS Users YouTube channel.