R/findIQR.R

#' 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
#' @export
findIQR<-function(
					x #vector of expression data
				){
				
	tmp<-summary(x)
	return(tmp[5]-tmp[2])
}
PeteHaitch/RUVcorr documentation built on May 8, 2019, 1:31 a.m.