Und so geht’s:
Der Code lautet:
sasfile analysis.backache load;
proc means data=analysis.backache;
var Age Height MonthPainSt WeightBaby WeightEnd WeightGain WeightStart;
run;
proc freq data=analysis.backache;
tables Bending Bowelaction Coughing Fatigue Height;
run;
...
(rest-of-sample-program)
sasfile analysis.backache close;
|