Uses of Class
adams.flow.control.removeoutliers.AbstractNumericOutlierDetector
-
Packages that use AbstractNumericOutlierDetector Package Description adams.flow.control.removeoutliers -
-
Uses of AbstractNumericOutlierDetector in adams.flow.control.removeoutliers
Subclasses of AbstractNumericOutlierDetector in adams.flow.control.removeoutliers Modifier and Type Class Description class
IQR
Interquartile range based detector.
If difference between actual/predicted is more than the factor of standard deviations away from the quartial 0.25/0.75, then the point gets flagged as outlier.class
MeanAbsoluteError
Mean absolute error (MAE) based detector.
If difference between actual/predicted is more than MAE * FACTOR, then the point gets flagged as outlier.class
StdDev
Standard deviation based detector.
If difference between actual/predicted is more than the factor of standard deviations away from the mean, then the point gets flagged as outlier.
-