Here are a couple of basic examples to get you started:
data temp;
do g = 1 to 2;
do x = 1 to 10;
y=ranuni(123);
z=ranuni(321);
output;
end;
end;
run;
proc sgplot data=temp;
series x=x y=y / markers markerattrs=(symbol=circlefilled)
group=g;
run;
proc sgplot data=temp (where=(g=1));
series x=x y=y / markers markerattrs=(symbol=circlefilled);
series x=x y=z / markers markerattrs=(symbol=circlefilled);
run;
... View more