1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/transform.R
\name{qrank}
\alias{qrank}
\title{Quantile ranks of a vector}
\usage{
qrank(x, ...)
}
\arguments{
\item{x}{a vector}
\item{...}{additional parameters passed to \code{rank}}
}
\description{
The quantile rank of a number in a vector is the relative
position of ranking resulted from rank divided by the length
of vector.
}
\examples{
qrank(mtcars$mpg)
}
\seealso{
\code{\link{rank}}
}
|