BookmarkSubscribeRSS Feed
deleted_user
Not applicable
How can I get my output to have consistent decimals? I've first rounded to the nearest hundredth, which gives me numbers that are whole (89) and also numbers that are to the nearest hundredth (67.92). How do I get the whole numbers to read to the nearest hundredth, i.e., how do I get 89 to read 89.00?

I tried this but nothing happened:

proc print data=ka.sorted;
format percent_p w.d;
run;

Thanks!
2 REPLIES 2
deleted_user
Not applicable
try
[pre]
format percent_p 5.2;
[/pre]
Also, it is unnecessary to round the number first. SAS will do it for you when it writes the number in the format.
deleted_user
Not applicable
Thanks - it worked!

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 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
  • 675 views
  • 0 likes
  • 1 in conversation