BookmarkSubscribeRSS Feed
Melk
Lapis Lazuli | Level 10

I am using sgplot to build vertical boxplots and would like to add ticks without labels to the y2axis where the yaxis has labels. when i add y2axis the yaxis goes away. how can i do this?

 

proc sgplot data=data;
    vbox out / group=cat;
       INSET 'p-value <0.001' / POSITION=TOPLEFT BORDER;
run;

4 REPLIES 4
ballardw
Super User

Did you try having a Yaxis statement and a Y2axis statement?

 

It sounds like you might want a Display=Novalues on a Y2axis statement.

Melk
Lapis Lazuli | Level 10

I am not getting any error messages but i dont see anything on the y2axis

BrunoMueller
SAS Super FREQ

Hi

 

To get something on the Y2 axis, you need a plot statement that uses this axis. The example below uses two VBOX, the second is completely transparent and so not visiable.

 

proc sgplot data=sashelp.cars;
  vbox invoice / group=origin name="vb1" ;
  vbox invoice / group=origin name="vb2" transparency=1 y2axis;
run;
DanH_sas
SAS Super FREQ

On the YAXIS statement, use the REFTICKS option:

 

proc sgplot data=data;

    yaxis refticks=(values);
    vbox out / group=cat;
       INSET 'p-value <0.001' / POSITION=TOPLEFT BORDER;
run;

 

If you only want tick marks, just say REFTICKS without any arguments.

 

Hope this helps!

Dan

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 16. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 4 replies
  • 1447 views
  • 2 likes
  • 4 in conversation