See my example here:
https://github.com/statgeek/SAS-Tutorials/blob/master/proc_means_basic.sas
You can control the statistics desired in the PROC MEANS statement.
Note the use of the STACKODS and NWAY options.
@RajashreeP wrote:
Hi, I want the same output Only with N statistics, But not the MIN,MAX,MEAN,STD. Please help thanks
YEAR REC STAT x1 x2
1999 49 N 49 0 2.65 1999 49 MIN 1 . 2.65 1999 49 MAX 1 . 2.65 1999 49 MEAN 1 . 2.65 1999 49 STD 0 . 2.65 2000 81 N 81 0 4.22 2000 81 MIN 1 . 4.22 2000 81 MAX 1 . 4.22 2000 81 MEAN 1 . 4.22
... View more