🔒 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 02-28-2022 02:38 PM
(1406 views)
I used the following simple code to produce boxplot.
proc sgplot data=have;
vbox score / category=year ;
xaxis label="year";
yaxis label="Score";
run;
If I want to label statistics such as 75th precentile, mean, median, 25th percentile in the boxplot, (as picture below) how should a modify the code above? Thank you!
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
This post adds labels but you can modify it to add the stats instead.
https://blogs.sas.com/content/iml/2019/08/28/schematic-box-plot.html
https://blogs.sas.com/content/iml/2019/08/28/schematic-box-plot.html
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
This post adds labels but you can modify it to add the stats instead.
https://blogs.sas.com/content/iml/2019/08/28/schematic-box-plot.html
https://blogs.sas.com/content/iml/2019/08/28/schematic-box-plot.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Thanks so much for the help! a big thumb to you!!