Hi all,
Is there a syntax in PROC MEANS to calculate the mean of positive numbers and negative numbers separately . it is not the count but the mean calculation.
If you preprocess your data set to have a variable that indicates positive or negative, then you could implement a CLASS statement to get this.
data want;
set have;
flag=sign(variable);
run;
proc means data=want;
class flag;
var variable;
run;
This should at least get you started.
Steve Denham
Message was edited by: Steve Denham
Thanks Steve Denham ,
This is quite helpful .
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.
Find more tutorials on the SAS Users YouTube channel.