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! 🙂
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.