多个变量直接输出 平均值: proc means data=MIX ; var a b c d ; run; 多个变量直接输出 中位数: proc means data=MIX median; var a b c d ; run;