detect_static_min_max_outliers | R Documentation |
Detect which numerical elements are outside the min-max range.
detect_static_min_max_outliers(
data,
min,
max,
includeMin = TRUE,
includeMax = TRUE
)
data |
<array> of floats corresponding to the numerical elements to be evaluated |
min |
<float> The minimum value of the range. |
max |
<float> The maximum value of the range. |
includedMin |
<boolean> An optional argument setting if the minimum value should be included as valid value (T), or not (F). Default is T. |
includedMax |
<boolean> An optional argument setting if the maximum value should be included as valid value (T), or not (F). Default is T. |
<array> of booleans, representing the outliers of input data argument.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.