BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
SaranyaSundar
Calcite | Level 5

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

1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

@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 .

View solution in original post

2 REPLIES 2
Jagadishkatam
Amethyst | Level 16

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;
Thanks,
Jag
ballardw
Super User

@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-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 ANOVA?

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.

Discussion stats
  • 2 replies
  • 10384 views
  • 1 like
  • 3 in conversation