Examples for 'validate::summary'


Create a summary

Aliases: summary summary,expressionset-method summary,indication-method validate-summary summary,validation-method

Keywords:

### ** Examples

data(retailers)
v <- validator(staff > 0, staff.costs/staff < 20, turnover+other.revenue == total.revenue)
summary(v)
  block nvar rules linear
1     1    2     2      1
2     2    3     1      1
cf <- confront(retailers,v)
summary(cf)
  name items passes fails nNA error warning
1   V1    60     54     0   6 FALSE   FALSE
2   V2    60     25    19  16 FALSE   FALSE
3   V3     0      0     0   0  TRUE   FALSE
                                              expression
1                                              staff > 0
2                                 staff.costs/staff < 20
3 abs(turnover + other.revenue - total.revenue) <= 1e-08

[Package validate version 1.1.1 Index]