outlierOF
outlierOF.Rd
This function will flag outlier objects based the worm_length_um variable.
Arguments
- data
A data frame output from the
modelSelection
function.- 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 = NULL
then it is set to the recommended values within the function: (1.5
ifiqr = TRUE
) and (3
ifiqr = FALSE
).- filterOF
Logical, if
TRUE
any flagged objects detected in data are not considered for the calculation of outliers.