Hello, I need to give statistics for two groups (1 or 0) of one of my variable.
I have to use proc means but I don't know how to seperate groups of my variable ?
Proc means data=mydata;
VAR min
WHERE is_member=1;
run;
Are you looking for a class statement?
class groups;
VAR min;
I think CLASS is the right tool but the program would be even simpler:
proc means data=mydata;
class is_member;
var min;
April 27 - 30 | GAYLORD TEXAN
Register now to lock in early bird pricing through February 25!
SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.
Find more tutorials on the SAS Users YouTube channel.