Wednesday, 12 October 2011

SAS - Gplot – A simple example

SAS/ Graph modular is feathered by the flexible PROC gplot
A simple example:


proc gplot data=sashelp.Class;
symbol i=none v=star;
plot height*weight;
run;
quit;





Resulting graph



No comments:

Post a Comment