Since both plots have a common horizontal axis the PLOT2 statement may be helpful. Here is an extremely attractive graph offered as an example.
[pre]symbol1 v=dot c=pink l=1 i=j;
symbol2 v=dot c=blue l=1 i=j;
symbol3 v=circle c=pink l=2 i=j;
symbol4 v=circle c=blue l=2 i=j;
proc sort data=sashelp.class out=class;
by age sex;
run;
proc gplot data=class;
plot height*age=sex;
plot2 weight*age=sex;
run;
[/pre]