I am attempting to calculate a mean on a character field count. I would like to have the average number of products sold by person. So far I have the count of products sold by person using the following:
proc means data=policy_count N;
class name;
var policy_num;
run;
Now, how do I get the overall average? Any help would be appreciated. Thanks.
proc means data=policy_count N;
class name;
var policy_num;
run;
Now, how do I get the overall average? Any help would be appreciated. Thanks.