| plot,validation-method {validate} | R Documentation |
The plot function for the confrontation object is identical to the barplot
method.
## S4 method for signature 'validation' plot(x, y, ...)
x |
a confrontation object. |
y |
not used |
... |
passed to |
Other validation-methods: aggregate,validation-method,
all,validation-method,
any,validation-method,
barplot,validation-method,
check_that, compare,
confront,
sort,validation-method,
summary, validation-class,
values
rules <- validator( r1 = staff.costs < total.costs
, r2 = turnover + other.rev == total.rev
, r3 = other.rev > 0
, r4 = total.rev > 0
, r5 = nace %in% c("A", "B")
)
plot(rules, cex=0.8, show_legend=TRUE)
data(retailers)
cf <- confront(retailers, rules)
plot(cf, main="Retailers check")