BookmarkSubscribeRSS Feed
Wang2017
Calcite | Level 5

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.


image1 2.JPG
3 REPLIES 3
PaigeMiller
Diamond | Level 26

Please tell us what PROC in SAS you are using. Also, show us your code.

--
Paige Miller
Wang2017
Calcite | Level 5

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.

Reeza
Super User

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;

SAS INNOVATE 2024

Innovate_SAS_Blue.png

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. 

Register now!

How to Concatenate Values

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.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 686 views
  • 0 likes
  • 3 in conversation