Skip to content

Professional data validation for the R environment

Notifications You must be signed in to change notification settings

jimsforks/validate

This branch is 105 commits behind data-cleaning/validate:master.

Repository files navigation

Build Status Coverage Status CRAN Downloads status Mentioned in Awesome Official Statistics

Easy data validation for the masses.

The validate R-package makes it super-easy to check whether data lives up to expectations you have based on domain knowledge. It works by allowing you to define data validation rules independent of the code or data set. Next you can confront a dataset, or various versions thereof with the rules. Results can be summarized, plotted, and so on. Below is a simple example.

> library(validate)
> library(magrittr)
> check_that(iris, Sepal.Width < 0.5*Sepal.Length) %>% summary()
  rule items passes fails nNA error warning                       expression
1   V1   150     79    71   0 FALSE   FALSE Sepal.Width < 0.5 * Sepal.Length

With validate, data validation rules are treated as first-class citizens. This means you can import, export, annotate, investigate and manipulate data validation rules in a meaninful way.

Resources

Installation

The latest release can be installed from the R command-line

install.packages("validate")

The development version can be installed as follows.

git clone https://github.com/data-cleaning/validate
cd validate
make install

Note that the development version likely contain bugs (please report them!) and interfaces that may not be stable.

About

Professional data validation for the R environment

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • R 85.8%
  • TeX 10.8%
  • C 2.4%
  • Other 1.0%