🔒 This topic is solved and locked.
Need further help from the community? Please
sign in and ask a new question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 11-10-2017 01:15 PM
(4825 views)
Hi all!
If I write this to calculate a percentage in a data step, where do I write the maxdec=2 so that percent_miss is only 2 decimals?
data gaq_4 (drop=_TYPE_ _FREQ_);
set gaq_1 (rename=(_FREQ_=Study_Population));
Percent_Miss=nmiss/Study_Population;
run;
Thank you!!
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Are you asking how to round your results to 2 decimal places?
Use the ROUND() function.
Percent_Miss=round(nmiss/Study_Population, 0.01);
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
MAXDEC is only an option in PROC MEANS.
You use a FORMAT or ROUND in a data step or SQL to limit the decimal places.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Are you asking how to round your results to 2 decimal places?
Use the ROUND() function.
Percent_Miss=round(nmiss/Study_Population, 0.01);