Learn R Programming

daqapo (version 0.3.2)

detect_value_range_violations: 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)

Value

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

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

See Also

domain_categorical,domain_time,domain_numeric

Examples

Run this code
# \donttest{
data("hospital_actlog")
detect_value_range_violations(activitylog = hospital_actlog,
     triagecode = domain_numeric(from = 0, to = 5))
# }

Run the code above in your browser using DataLab