I don't think you can separate these in UNIVARIATE, but you can design the graph you want in the ODS Graph Designer. I've done a very basic no-frills version and it produced this code: proc template; define statgraph Graph; dynamic _MSRP _MSRP2 _MSRP3; begingraph / designwidth=764 designheight=484; layout lattice / rowdatarange=union columndatarange=data columns=2 rowgutter=10 columngutter=10 columnweights=(0.71 0.29); layout overlay; histogram _MSRP / name='histogram_h' orient=horizontal; endlayout; layout overlay; boxplot y=_MSRP3 / name='box2' boxwidth=0.4 groupdisplay=Cluster clusterwidth=1.0; endlayout; rowaxes; rowaxis; endrowaxes; endlayout; endgraph; end; run; proc sgrender data=SASHELP.CARS template=Graph; dynamic _MSRP="MSRP" _MSRP2="MSRP" _MSRP3="MSRP"; run; With this result when I run it: Chris
... View more