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 🙂

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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