qvector | R Documentation |
Converts a numeric vector into an ordinal one based on quantiles.
qvector(x, probs = seq(0, 1, 0.25), na.rm = FALSE, ...)
x |
a numeric vector. |
probs |
numeric vector of probabilities with values in [0, 1] used by |
na.rm |
logical, if true, any |
... |
further arguments passed to the function |
A numeric vector of length the same as the input vector, containing the respective (upper) quantile values.
P\'eter S\'olymos, solymos@ualberta.ca
S\'olymos P. (2008) mefa: an R package for handling and reporting count data. Community Ecology 9, 125–127.
S\'olymos P. (2009) Processing ecological data in R with the mefa package. Journal of Statistical Software 29(8), 1–28. \Sexpr[results=rd]{tools:::Rd_expr_doi("10.18637/jss.v029.i08")}
http://mefa.r-forge.r-project.org/
quantile
x <- rnorm(20)
x
y <- qvector(x)
y
rbind(x, y)
plot(x, y, type="h")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.