| summary {validate} | R Documentation |
Create a summary
summary(object, ...) ## S4 method for signature 'expressionset' summary(object, ...) ## S4 method for signature 'indication' summary(object, ...) ## S4 method for signature 'validation' summary(object, ...)
object |
An R object |
... |
Currently unused |
A data.frame with the information mentioned below is returned.
For these objects, the ruleset is split into subsets (blocks) that are disjunct in the sense that they do not share any variables. For each bloch the number of variables, the number of rules and the number of rules that are linear are reported.
Some basic information per evaluated indicator is reported: the number of items to which the
indicator was applied, the output class, some statistics (min, max, mean , number of NA)
and wether an exception occurred (warnings or errors). The evaluated expression is reported as well.
Some basic information per evaluated validation rule is reported: the number of items to which the
rule was applied, the output class, some statistics (passes, fails, number of NA)
and wether an exception occurred (warnings or errors). The evaluated expression is reported as well.
data(retailers) v <- validator(staff > 0, staff.costs/staff < 20, turnover+other.revenue == total.revenue) summary(v) cf <- confront(retailers,v) summary(cf)