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

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

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.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

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

View all other training opportunities.

Discussion stats
  • 2 replies
  • 599 views
  • 0 likes
  • 2 in conversation