Fit distribution quantiles to fire intervals

# S3 method for intervals
quantile(x, q = c(0.125, 0.5, 0.875), ...)

Arguments

x

An intervals object.

q

Vector giving the desired quantiles.

...

Additional arguments passed to the quantile() method for the fit distribution.

See also

Examples

data(pgm)
intervs <- intervals(composite(pgm))
#> Warning: ties should not be present for the Kolmogorov-Smirnov test
quantile(intervs)
#> [1]  3.918526 10.590013 20.555245

# Or you can pass in your own quantiles:
quantile(intervs, q = c(0.25, 0.5, 0.75))
#> [1]  6.227954 10.590013 16.092398