Hi,
Do you guys know how can I can I remove "NeuroGrp2" in the sgplot output?
ThanksSGPlot11.png
XAXIS DISPLAY=(NOLABEL);
Try setting the label to missing?
Your code may help.
label NeuroGrp2='';
Otherwise you can use an XAXIS statement and control it from there.
@JB_DataAnalyst wrote:
Hi,
Do you guys know how can I can I remove "NeuroGrp2" in the sgplot output?
Thanks
SGPlot11.png
Thanks Reeza,
however this is the output.
SGPlot15.pngthere's a ' in the title :). I really appreciate your help
proc sgplot data=test;
Title "test data";
yaxis label="Percentage(%)" min=0 max=.8;
xaxis label="";
label NeuroGrp2='';
vbar NeuroGrp2 / response=pct2 group=flag groupDisplay=cluster datalabel;
run;
Xaxis nolabel;
Add some blanks in quote.
label NeuroGrp2=' ';
XAXIS DISPLAY=(NOLABEL);
This one works!!
XAXIS DISPLAY=(NOLABEL);
Thank you very much! 🙂
It's your turn to help shape SAS Innovate 2027. Share your expertise and inspire the SAS community.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.