Description Usage Arguments Details Value See Also Examples
View source: R/identifyOutliers.R
A checkFunction to be called from check
that identifies outlier values
in a Date/numeric/integer variable.
1 | identifyOutliers(v, nMax = 10, maxDecimals = 2)
|
v |
A Date, numeric or integer variable to check. |
nMax |
The maximum number of problematic values to report.
Default is |
maxDecimals |
A positive integer or |
Outliers are identified based on an outlier rule that is appropriate for asymmetric data. Outliers are observations outside the range
Q1 - 1.5*exp(a*MC)*IQR ; Q3 + 1.5*exp(b*MC)*IQR
where Q1, Q3, and IQR are the first quartile, third quartile, and inter-quartile range, MC is the 'medcouple', a robust concept and estimator of skewness, and a and b are appropriate constants (-4 and 3). The medcouple is defined as a scaled median difference of the left and right half of distribution, and hence not based on the third moment as the classical skewness.
When the data are symmetric, the measure reduces to the
standard outlier rule also used in Tukey Boxplots (consistent with
the boxplot
function), i.e. as values that are
smaller than the 1st quartile minus the inter quartile range (IQR)
or greater than the third quartile plus the IQR.
For Date variables, the calculations are done on their raw numeric format (as
obtained by using unclass
), after which they are translated back to Dates.
Note that no rounding is performed for Dates, no matter the value of maxDecimals
.
A checkResult
with three entires:
$problem
(a logical indicating whether outliers were found),
$message
(a message describing which values are outliers) and
$problemValues
(the outlier values).
check
, allCheckFunctions
,
checkFunction
, checkResult
, mc
1 | identifyOutliers(c(1:10, 200, 200, 700))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.