Hi,
Do you guys know how can I can I remove "NeuroGrp2" in the sgplot output?
Thanks
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
Thanks Reeza,
however this is the output.
there'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! 🙂
Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!
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.