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 🙂

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 2 replies
  • 817 views
  • 0 likes
  • 2 in conversation