Sunday, March 20, 2011

Box Plot

Pls try with our titanic data

proc sort data=mylib.titanic;
by increasing fare pclass;
run;
proc boxplot data=mylib.titanic;
plot fare*pclass;
run;

No comments:

Post a Comment