search for: small_df

Displaying 1 result from an estimated 1 matches for "small_df".

Did you mean: small_
2011 Mar 28
1
quantile function -> I need only the quantile value itself
Hi, I am using the quantile function currently and I have just bumped into a little problem. I have a very small data frame something like this: small_df <- c(7,3,4,7,1,10,12,1,12,4,4,8,6,11,9,10,4,13,3,9,6,5,2,10,7,14,2,7,10,10,7,8,2,11,3,10,11,3,11,14,12,7,6,11) small_df Now in the next step I would like to calculate the quantile value of the previous data frame at the probability of 95% the following way: quantile(small_df,probs=0.95) The re...