| TestOutliers {FlowSOM} | R Documentation |
Test if any cells are too far from their cluster centers
TestOutliers(fsom, madAllowed = 4, fsomReference = NULL, plotFile = NULL)
fsom |
FlowSOM object |
madAllowed |
Number of median absolute deviations allowed. Default = 4. |
fsomReference |
FlowSOM object to use as reference. If NULL (default), the original fsom object is used. |
plotFile |
If |
For every cluster, the distance from the cells to the cluster centers is
used to label cells which deviate too far as outliers. The threshold is
chosen as the median distance + madAllowed times the median absolute
deviation of the distances.
A new FlowSOM object
FlowSOMSubset if you want to get a subset of the
current data instead of a new dataset
# Build FlowSom result
fileName <- system.file("extdata", "68983.fcs", package = "FlowSOM")
ff <- flowCore::read.FCS(fileName)
flowSOM.res <- FlowSOM(ff,
compensate = TRUE, transform = TRUE, scale = TRUE,
colsToUse = c(9, 12, 14:18),
maxMeta = 10)
# Map new data
outlier_report <- TestOutliers(flowSOM.res)