I am creating a comparative histogram (pic attached) in proc univariate and my class variable is entry (entry has two values, A and B).
The labels that are placed to the left of each histogram say "entry = A' and 'entry = B'. How can I modify these so they only say 'A' and 'B' and leave off the 'entry = '. I can't find anything online that says how to modify these. The code that I am using is posted below:
proc univariate data=results noprint;
class entry;
var result;
histogram result / odstitle = 'Analyte' vscale=percent nocurvelegend normal(noprint);
run;
If you want more control over graph appearance than Proc Univariate provides then you might want to try using Proc Sgpanel
Which version of SAS are you using?
I don't get the variable name in the label as you do attempting your code structure with one of my datasets.
If you want more control over graph appearance than Proc Univariate provides then you might want to try using Proc Sgpanel
Which version of SAS are you using?
I don't get the variable name in the label as you do attempting your code structure with one of my datasets.
proc sgpanel data=sashelp.class; panelby sex/layout=rowlattice rowheaderpos=left novarname spacing=4; histogram weight; density weight; run;
Thank you ballrdw and ksharp! I will use sgpanel instead of proc univariate to make these.
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.