BookmarkSubscribeRSS Feed
tal83
Calcite | Level 5
Hi!
I have 3 plots that I want to plot on the same graph, (all 3 have the same scale: it's a value and it's confidence interval).
For some reason, I get 3 diffrent plots when I do this:

symbol1 i= Needle v=dot c=&col. h=0.05 cm ;
symbol2 i=j v=dot c=black h=0.08 cm w=0.45;
symbol3 i=j v=dot c=black h=0.08 cm w=0.45;
proc gplot data=a gout=work.test;
plot CORR*lag=1/overlay ;
plot low*lag=2/overlay;
plot up*lag=3/overlay;

where stat_id=&stat.;
run; quit;


when I tried :

symbol1 i= Needle v=dot c=&col. h=0.05 cm ;
symbol2 i= j v=dot c=black h=0.05 cm ;
proc gplot data=a gout=work.test ;
plot CORR*lag=1 /overlay vaxis = axis2 haxis=axis1 name="&stat.O3TVT";
plot2 low*lag=2/overlay vaxis = axis2 ;
where stat_id=&stat.;
run; quit;

I got 1 plot , but with two diffrent vertical axis (1 on the left , one on the right).

Thanks In advance.
Tal
2 REPLIES 2
GraphGuy
Meteorite | Level 14
You were almost there!
I think it would be something along the lines of ...

plot CORR*lag=1 low*lag=2 up*lag=3 / overlay;
tal83
Calcite | Level 5
Thanks 🙂

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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
  • 2 replies
  • 1112 views
  • 0 likes
  • 2 in conversation