powered by
Define validation rules for data
validator(..., .file, .data)
An object of class validator (see validator-class).
validator
validator-class
A comma-separated list of validating expressions
(optional) A character vector of file locations (see also the section on file parsing in the syntax help file).
syntax
(optional) A data.frame with columns "rule", "name", and "description"
data.frame
"rule"
"name"
"description"
Each validating expression should evaluate to a logical. Allowed syntax of the expression is described in syntax.
logical
Other validator-methods: +,validator,validator-method, plot,validator-method
+,validator,validator-method
plot,validator-method
v <- validator( height>0 ,weight>0 ,height < 1.5*mean(height) ) cf <- confront(women, v) summary(cf)
Run the code above in your browser using DataLab