R/findIQR.R

Defines functions findIQR

Documented in findIQR

#' Find the inter quantile range.
#'
#' Internal function to find the inter quantile range.
#'
#' @param Vector of gene expression values.
#' @return Numeric value.
#' @keywords internal
#' @author Saskia Freytag
findIQR<-function(
      x ##vector of expression data
){
  
  tmp<-summary(x)
  return(tmp[5]-tmp[2])
}

Try the RUVcorr package in your browser

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

RUVcorr documentation built on Nov. 8, 2020, 5:10 p.m.