I'm doing the following the output the mean to a datset:
PROC UNIVARIATE DATA=have trimmed=0.05;
VAR age;
by sex;
output out=outputstats mean=theMean;
run;
proc print; run;
How can I output the trimmed mean? I can't find the keyword to request so I can select it.