I have a data range of 10,000 points as per:
data = rbinom(10000, size=10, prob=1/4)
I need to find the mean and standard deviation of the data values >=5
.
There are approx 766 values as per:
sum(data >=5)
sum
(or any other approach I can think of) produces a TRUE/FALSE
and cannot be used within a mean
or sd
calculation. How do I divide up the actual values?!