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!

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 711 views
  • 0 likes
  • 1 in conversation