quantil.emp | R Documentation |
Computes the value of the empirical p:th quantile.
quantil.emp(y, p)
y |
n vector; the observed data |
p |
0<p<1: the p:th quantile will be estimated |
a real number
Jussi Klemela
emp.quantile
,
set.seed(2) n<-100 y<-matrix(runif(n),n,1) quantil.emp(y,p=0.05)