|
it is easy. if you use sas, you can obtain it as follows
data x;
set xx;
proc freq;
tables gender;
run;
--------------------------------------------
skyline wrote:
> Hello,
>
> I would like to count the number of observations for male and female
> students;
>
>
> students gender
> 1 male
> 2 female
> 3 male
> 4 male
>
> Thank you very much,
|