What wanted is stich the 4 plots into one(one pic/jpg), so that 4 takes four corners with the
final chart(top_left, top_right, bottom_left and bottom_right).
proc gplot data=sashelp.applianc(where=(cycle<=20)); plot units_1*cycle/legend overlay; run;quit; proc gplot data=sashelp.applianc(where=(cycle<=20)); plot units_2*cycle/legend overlay; run;quit; proc gplot data=sashelp.applianc(where=(cycle<=20)); plot units_3*cycle/legend overlay; run;quit; proc gplot data=sashelp.applianc(where=(cycle<=20)); plot units_4*cycle/legend overlay; run;quit;
... View more