Description Usage Arguments Value Author(s) Examples
View source: R/immunogenicity_functions.R
This function excludes outliers from the assay dataframe based on grDevices::boxplot.stats(). This outlier removal method is based on Tukey's test where outliers are removed if outside the established interquartile range.
1 2 3 4 5 | excludeOutliers(
assay.df.melted,
data.transf = FALSE,
transf.method = c("log10", "ln")
)
|
assay.df.melted |
A data.frame produced by assayMelt() |
data.transf |
Should the data should be transformed before normality is evaluated |
transf.method |
If data.transf is TRUE, which method should be used. Can choose between 'log10' and 'ln'. |
A melted data.frame
Emma Gail
1 2 | assay.df.melted <- assayMelt(assay.df = lognormAssay, exp.name = 'Experiment1')
excludeOutliers(assay.df.melted, data.transf = TRUE, transf.method = 'log10')
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.