Think that you need a graph of the empirical cumulative distribution function.
Therefore, check out the documentation for ecdf() , as well as the more functional ecdf() in the CRAN Hmisc package.
Example Hmisc Ecdf: ExecTm array, HttpProvCall array of time it took to call the downstream system, and we compare the time we spend with the downstream system with percentiles
> library(Hmisc) > x <- c(ExecTm,ExecTm-HttpProvCall) > g <- c(rep('ExecTm',length(ExecTm)),rep('ExecTm-HttpProvCall',length(ExecTm))) > Ecdf(x, group=g, xlab='Test Results', + label.curves=list(keys=1:2),q=c(.90,.95,.98))

source share