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?!
If you want to get all the values of
datawhich are greater than or equal to 5, rather than just a logical vector telling you if the values ofdataare greater than or equal to 5, you need to dodata[data >= 5].So we can do: