Hi Nicholas. This is what I figured out so far: ____________________________________________________________________ *this is the code that produces your desired plot; proc sort data = sashelp.class out = t;by sex; ods graphics on; proc boxplot data = t; plot age*sex /boxstyle=skeletal nohlabel boxconnect=q3 cconnect=blue boxwidthscale=1 clipfactor=1.5 clipsymbol=dot; insetgroup n; run;quit; ____________________________________________________________________ OK, so in order to keep the nice features that ODS Graphics provides, but to remove the title, I think you may need to change from PROC BOXPLOT to PROC TEMPLATE + PROC SGRENDER. So, the one way I figured how to remove the title is by "defining" your own template where you don't use the "ENTRYTITLE" statement (See below, please): proc template; define statgraph PrettyBox; begingraph; *entrytitle 'Distribution of Age by Sex';*<----This statement makes your title appear, by default, when you use the ODS GRAPHICS; layout overlay; boxplot y=age x=sex; endlayout; endgraph; end; run; proc sort data=sashelp.class out=class;by sex;run; proc sgrender data=class template=PrettyBox; run; However, you will need to read about how to "enhance" the graph template definition (which I called "prettyBox") to add the Ns, and the different widths, and all these other things that we both know how to do in PROC BOXPLOT. OK. I may return if I come up with a better answer. :smileyconfused:
... View more