BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
csetzkorn
Lapis Lazuli | Level 10

I am using the code below and would like to force SAS to show all labels. Thanks.

 

PROC SGPLOT DATA = SomeData;
 SERIES X =  ContVar Y = Labels / MARKERS LINEATTRS = (THICKNESS = 2);  
 XAXIS LABEL = 'ContVar' GRID VALUES = (-5 TO 0 BY 1);
 TITLE 'todo';
 refline -1 /axis=x label="" lineattrs=(color=red pattern=dash thickness=3);
RUN;
1 ACCEPTED SOLUTION

Accepted Solutions
DanH_sas
SAS Super FREQ
Assuming that you want the “label” axis to be discrete, add this line to sgplot:

yaxis type=discrete fitpolicy=none;

Hope this helps!
Dan

View solution in original post

3 REPLIES 3
RW9
Diamond | Level 26 RW9
Diamond | Level 26

I can'T FolLOW whaT you ARE SAYing.  - see how writing all in mixed and mainly uppercase makes reading things so much harder?

 

As for your question, post some sort of example of what you mean, you specify that the xaxis should show -5, -4, -3, -2, -1, 0 - are these not showing?

Maybe you mean the yaxis?  If so specify the yaxis items in a line like the xaxis you have already done.  Don't know the exact values (well you can select into), then put a min-max.  All the statemetns are here:

http://support.sas.com/documentation/cdl/en/grstatproc/65235/HTML/default/viewer.htm#p07m2vpyq75fgan...

They all apply to yaxis and x/y axis2.

csetzkorn
Lapis Lazuli | Level 10
Thanks. y axis as it says in title and it is categorical - i WanNT to show all possible categories. Thanks (-:
DanH_sas
SAS Super FREQ
Assuming that you want the “label” axis to be discrete, add this line to sgplot:

yaxis type=discrete fitpolicy=none;

Hope this helps!
Dan

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

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

View all other training opportunities.

Discussion stats
  • 3 replies
  • 5324 views
  • 4 likes
  • 3 in conversation