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.
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
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.