Code for the Simple Graph Example

ods html sge=on;
proc sgplot data=sashelp.class;
 scatter x=weight y=height;
run;