
outlierOF
outlierOF.RdThis function will flag outlier objects based the worm_length_um variable.
Arguments
- data
A data frame output from the
modelSelectionfunction.- iqr
Logical, if
TRUE, objects in a well are called outliers if their worm_length_um is outside the rangemedian(worm_length_um) +/- (thresh * IQR). IfFALSE, objects in a well are called outliers if their worm_length_um is outside the rangemean(worm_length_um) +/- (thresh * SD). The default isTRUE. NOTE: The Interquartile Range (IQR) method is useful for most distributions. The Standard Deviation (SD) method should only be applied to normal distributions.- thresh
A numeric value used to calculate outliers. By default this parameter is set to
NULL. Ifthresh = NULLthen it is set to the recommended values within the function: (1.5ifiqr = TRUE) and (3ifiqr = FALSE).- filterOF
Logical, if
TRUEany flagged objects detected in data are not considered for the calculation of outliers.