RDocumentation: quantile
  • AI Chat
  • Code
  • Report
  • Beta
    Spinner

    Note that this notebook was automatically generated from an RDocumentation page. It depends on the package and the example code whether this code will run without errors. You may need to edit the code to make things work.

    if(!require('stats')) {
        install.packages('stats')
        library('stats')
    }
    quantile(x <- rnorm(1001)) # Extremes & Quartiles by default
    quantile(x,  probs = c(0.1, 0.5, 1, 2, 5, 10, 50, NA)/100)
    
    ### Compare different types
    quantAll <- function(x, prob, ...)
      t(vapply(1:9, function(typ) quantile(x, prob=prob, type = typ, ...), quantile(x, prob, type=1)))
    p <- c(0.1, 0.5, 1, 2, 5, 10, 50)/100
    signif(quantAll(x, p), 4)
    ## for complex numbers:
    z <- complex(re=x, im = -10*x)
    signif(quantAll(z, p), 4)