Hi,
I'm new to SAS programs. I inherited this program from an ex-coworker and needed to create new graph. I'm making cluster bar charts and don't want to display the data number at the bottom of the bars. How can I remove them?
Here's the code:
title "OVERALL HEALTH & WELL-BEING";
proc sgplot data= sasdata.cruise&date;
vbar Q156_1 /stat=percent datalabel;
xaxistable Q156_1 / location=inside stat=freq;
%include " &fmtpath\sas format statement_v3.sas";
%include " &fmtpath\sas labels_v3.sas";
title2 "A3.In the past 7 days,I feel close to my friends";
xaxis display=(nolabel); run; title2; quit;