I'm sure there is an easy solution to this but I cannot seem to output the correct values. I have a dataframe and I would like to calculate an average based on values above a certain value, in this case 150.
df1 <- as.data.frame(matrix(sample(0:1000, 36*10, replace=TRUE), ncol=1))
df2 <- as.data.frame(matrix(sample(0:500, 36*10, replace=TRUE), ncol=1))
df3 <- as.data.frame(matrix(sample(0:200, 36*10, replace=TRUE), ncol=1))
Example <- cbind(df1,df2,df3)
Similar stuff I've done leads me to think apply may be the most effective way (and I have tried to follow steps from the link below). http://rforpublichealth.blogspot.co.uk/2012/09/the-infamous-apply-function.html. However, the outputs from the following code are faulty, with outputs being below 1 in spite of me trying to mean average values above 150.
test<- apply(Example,2,function(x) {mean(x > 150)})
Any help would be highly appreciated thank you!
You were close, but need to do
mean(x[x > 150])
rather thanmean(x > 150)
:This works because
x[x > 150]
says "take all values of x where x is above 150".