Hi, I want to know how to mark the average value on the boxplot.
Here is the phrase I wrote. How can I change it?
Proc sgplot data = A ;
Vbox scr1 / categorty=cd
group= cd boxwidth=0.8
capshape=none meanattrs=(symbol=diamond size=12);
axis color=black width=20;
run;
Thanks for appreciate!
data have;
set sashelp.heart;
keep status bp_status weight;
run;
proc summary data=have nway;
class status bp_status;
var weight;
output out=temp mean=mean;
run;
data want;
set have temp;
run;
proc sgplot data=want noautolegend ;
Vbox weight / category=status group=bp_status boxwidth=0.8
capshape=none meanattrs=(symbol=diamond size=12);
scatter x=status y=mean /group=bp_status groupdisplay=cluster clusterwidth=0.7
datalabel=mean datalabelattrs=(color=black) markerattrs=(size=0) ;
xaxis display=(nolabel) ;
run;
data have;
set sashelp.heart;
keep status bp_status weight;
run;
proc summary data=have nway;
class status bp_status;
var weight;
output out=temp mean=mean;
run;
data want;
set have temp;
run;
proc sgplot data=want noautolegend ;
Vbox weight / category=status group=bp_status boxwidth=0.8
capshape=none meanattrs=(symbol=diamond size=12);
scatter x=status y=mean /group=bp_status groupdisplay=cluster clusterwidth=0.7
datalabel=mean datalabelattrs=(color=black) markerattrs=(size=0) ;
xaxis display=(nolabel) ;
run;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.