[][src]Function frank::rrank

pub fn rrank<T: PartialOrd + Clone>(vector: &[T]) -> Vec<f64>

rrank() follows the R Language rank() convention with the result as Vec. rrank R Example: x<- c(7,2,2,5); rank(x) yields (4.,1.5,1.5,3.)