* Iris2 Example Use proc sgplot to plot SepalLength vs. SepalWidth; proc template; define style styles.mystyle; parent=styles.default; style graphdata1 from graphdata1 / markersymbol='starfilled' contrastcolor=red; style graphdata2 from graphdata2 / markersymbol='trianglefilled' contrastcolor=black; style graphdata3 from graphdata3 / markersymbol='squarefilled' contrastcolor=blue; end; ods html style=mystyle; proc sgplot data=sashelp.iris; title 'Fisher Iris Data -- 1936'; scatter x=SepalWidth y=SepalLength / group=species markerattrs=(size=10px); run; quit;