get.prop.below.LLOD | R Documentation |
The function obtains lower limit of detection as in proteomic analysis.
get.prop.below.LLOD(eset, flagged = "OUT")
eset |
An ExpressionSet object. |
flagged |
A flag is an indicator for sample exclusion. |
An updated ExpressionSet object.
James Peters
suppressMessages(library(Biobase))
data(sample.ExpressionSet, package="Biobase")
exampleSet <- sample.ExpressionSet
Biobase::fData(exampleSet)
Biobase::fData(exampleSet)$lod.max <-
apply(Biobase::exprs(exampleSet),1,quantile,runif(nrow(exampleSet)))
lod <- get.prop.below.LLOD(exampleSet)
x <- dplyr::arrange(fData(lod),desc(pc.belowLOD.new))
knitr::kable(head(lod))
plot(x[,2], main="Random quantile cut off", ylab="<lod%")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.