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))
}
stamats/MKmisc documentation built on Nov. 20, 2022, 6:06 a.m.