I have inherited a general boxplot program (V9.4) that displays the mean. I need to update to reporting the geometric mean. The current program is using a boxplot statement in PROC TEMPLATE, which is then called in PROC SGRENDER: proc template; define statgraph XXX; begingraph ; ...blah blah axis options and titles and whatnot... boxplot y=yvar x=xvar / datalabelattrs=(color=black size=4) boxwidth=0.25 display=(caps fill median mean outliers); endlayout; endgraph; end; run; proc sgrender data=mydata template = XXX; run; quit; I'm not finding any options to display geometric means. I'm poking around at using PROC SGPLOT instead with VBOX, but I'm not finding any options there either. Unless there is some awesomely cool proc or option I'm missing, I'm thinking my best bet may be to suppress printing the mean, calculate geo-mean, and overlay it separately. Any suggestions? Many many thanks, VCM
... View more