Nothing
#' 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])
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.