R/IQrange.R

Defines functions IQrange

Documented in IQrange

IQrange <- function(x, na.rm = FALSE, type = 7){
  diff(quantile(as.numeric(x), c(0.25, 0.75), na.rm = na.rm, 
                names = FALSE, type = type))
}

Try the MKdescr package in your browser

Any scripts or data that you put into this service are public.

MKdescr documentation built on Nov. 10, 2022, 5:12 p.m.