Here is the program.
proc means data = learn.blood noprint;
var chol;
output out = means( keep = AveChol )
mean = AveChol;
run;
It is said that the proc means step creates a SAS data set (means) with one observation and one variable. I understand that it creates one variable with name chol. But why does it have only one observation?
Many thanks for your time and attention.