detect_value_range_violations {daqapo}R Documentation

Detect value range violations

Description

Function detecting violations of the value range, i.e. values outside the range of tolerable values

Usage

detect_value_range_violations(activitylog, ..., details, filter_condition)

Arguments

activitylog

The activity log

...

Define domain range using domain_numeric, domain_categorical and/or domain_time for each column

details

Boolean indicating wheter details of the results need to be shown

filter_condition

Condition that is used to extract a subset of the activity log prior to the application of the function

Value

activitylog containing the rows of the original activity log for which the provided value range is violated

See Also

domain_categorical,domain_time,domain_numeric

Examples


data("hospital_actlog")
detect_value_range_violations(activitylog = hospital_actlog,
     triagecode = domain_numeric(from = 0, to = 5))


[Package daqapo version 0.3.2 Index]