简体   繁体   中英

Calculating Running Percentile in R

I'm trying to calculate the percentiles from 1:i in a column. For example, for the nth data point, calculate the percentile only using the first n values.

I have tried using quantile , but can't seem to figure out how to generalize it.

mydata <- c(1, 25, 43, 2, 5, 17, 40, 15, 12, 8)

perc.fn <- function(vec, n){
(rank(vec[1:n], na.last=TRUE) - 1)/(length(vec[1:n])-1)}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM