Can someone show me how to adjust the y-axis please. I am new to SAS and just couldn't figure out how to adjust the scale. I want the y-axis to go from 3 to 10. I used vaxis=3 to 10 by 1 but still doesn't work. Tried a bunch of other things but doesn't work. Comes out like that.
Please tell us what PROC in SAS you are using. Also, show us your code.
PROC gplot data = g1;
title 'Blood Glucose Level after 10 A.M Meal';
plot gl*x = subject/
haxis=-1 to 27 by 2
vaxis=3.00 to 10.00 by 1;
run;
quit;
The horizontal axis is adjust everytime I make an adjust to it but the vertical axis doesn't change at all.
Can you switch to SGPLOT? It's easier to use than GPLOT in my experience, the syntax is more user friendly and you get better quality graphs.
proc sgplot data=g1;
title 'Blood Glucose Level after 10 am Meal';
scatter x=x y=gl / group = subject;
yaxis values = (-1 to 27 by 2);
xaxis values = (3 to 10 by 1);
run;quit;
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
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.