Learn R Programming

validate (version 0.1.4)

validator: Define validation rules for data

Description

Define validation rules for data

Usage

validator(..., .file)

Arguments

...
A comma-separated list of validating expressions
.file
A character vector of file locations (see also the section on file parsing in the syntax help file).

Value

Validating expressions

Each validating expression should evaluate to a logical. Allowed syntax of the expression is described in syntax.

A validating expression is an expression whose evaluation results in TRUE, FALSE or NA.

See Also

confront, check_that summary,expressionset-method validator-class

Examples

Run this code
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