I wanted to set a y-axis running from 0% to 100% for all my control charts using Proc Shewhart. However, it seems that the y-axis scale only ranges across the maximum and minimum of the dataset. Here are two codes I have tried:
ods graphics off;
title 'Percentage of Hypertensive Patients with Scheduled Appointment';
symbol v=dot color=darkblue h=1.75;
proc shewhart data=percentages;
xchart a*b/ interval = month climits=red nolimitlabel nolegend vformat = percent10. vaxis = (0 to 1 by 0.1);
label a='XXX' b = 'YYY';
run;
ods graphics off;
title 'ZZZ'; /*TITLE TO THE CHART*/
axis1 order = (0 to 1 by 0.1)
label=("XXX");
axis2 label = ("YYY");
symbol v=dot color=darkblue h=1.75; /*SYMBOL TYPE, COLOR AND DIAMETER*/
proc shewhart data=percentages;
xchart a*b/vaxis = axis1 haxis=axis2 interval = month climits=red nolimitlabel nolegend vformat=percent10.;
run;
DUPLICATE THREAD
All replies should go to https://communities.sas.com/t5/Graphics-Programming/Proc-Shewhart-How-to-set-y-axis-scale-from-0-to-...
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
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.