detect_static_min_max_outliers: Detect min-max outliers in static data.

View source: R/preparation.R

detect_static_min_max_outliersR Documentation

Detect min-max outliers in static data.

Description

Detect which numerical elements are outside the min-max range.

Usage

detect_static_min_max_outliers(
  data,
  min,
  max,
  includeMin = TRUE,
  includeMax = TRUE
)

Arguments

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.

Value

<array> of booleans, representing the outliers of input data argument.


biggproject/biggr documentation built on Oct. 2, 2024, 11:13 p.m.