BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Leo9
Quartz | Level 8

 

I am creating a graph where I want to display only specific ticks. For some reason, the plot is not displaying all the values which I am providing. Below is the code. In the case, I am passing tickvalues as a macro parameter. The values for ticks which I am passing 

are : 3, 3.18, 3.48, 4, 6,8,10,12

 

How can I display all the ticks on y-axis ?


proc sgplot data = lbs ;
format lbstresn tcfmt. ;
series x = weeks y = lbstresn / group = subjid groupms=subjid markers markerattrs=(size =4);
yaxis label = &lbl values =(&ticks) display = all/* min = &valu5*/ ;
xaxis values= (0 to 24 by 1 ) label = "Weeks" display = all ;
refline &valu4/ label = "LOQ = &valu3 " labelattrs = (size = 6) labelloc=inside;
keylegend / valueattrs = (size=6) title = 'Subjects' ;
run;

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
Jay54
Meteorite | Level 14

What does your graph output look like?  Some tick values may be dropped due to collision.  Try using FITPOLICY=none to see all values.

Providing full code with data helps to see what is going on, and the version of SAS you are using.

View solution in original post

1 REPLY 1
Jay54
Meteorite | Level 14

What does your graph output look like?  Some tick values may be dropped due to collision.  Try using FITPOLICY=none to see all values.

Providing full code with data helps to see what is going on, and the version of SAS you are using.

SAS Innovate 2025: Register Now

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!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 1926 views
  • 0 likes
  • 2 in conversation