Clarification:
Does it make a difference if I use the default PROC MEANS statement or a CLASS and WAYS statement to get stats for an entire table (in other words, will both of these yield the same results)?
Proc means data=pg1.storm_final;
Var MaxWindMPH;
run;
vs.
Proc means data=pg1.storm_final;
Var MaxWindMPH;
CLASS BasinName StormType;
WAYS 0;
run;