All Projects → data-cleaning → Validate

data-cleaning / Validate

Professional data validation for the R environment

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to Validate

Pandera
A light-weight, flexible, and expressive pandas data validation library
Stars: ✭ 506 (+88.81%)
Mutual labels:  validation, data-cleaning
Email inquire
Validate email for common typos and one-time email providers
Stars: ✭ 257 (-4.1%)
Mutual labels:  validation
apple-receipt
Apple InAppPurchase Receipt - Models, Parser, Validator
Stars: ✭ 25 (-90.67%)
Mutual labels:  validation
magic-bytes
A library for detecting file types.
Stars: ✭ 20 (-92.54%)
Mutual labels:  validation
ruby-magic
Simple interface to libmagic for Ruby Programming Language
Stars: ✭ 23 (-91.42%)
Mutual labels:  validation
ngx-messages
Angular directives for displaying validation messages similar to these from AngularJs
Stars: ✭ 17 (-93.66%)
Mutual labels:  validation
fefe
Validate, sanitize and transform values with proper TypeScript types and zero dependencies.
Stars: ✭ 34 (-87.31%)
Mutual labels:  validation
Vscode Stylelint
A Visual Studio Code extension to lint CSS/SCSS/Less with stylelint
Stars: ✭ 260 (-2.99%)
Mutual labels:  validation
Pt Br Validator
Uma biblioteca contendo validações de formatos Brasileiros, para o Laravel
Stars: ✭ 255 (-4.85%)
Mutual labels:  validation
validate
Modern lightweight library without dependencies for the data validation from single input tag
Stars: ✭ 24 (-91.04%)
Mutual labels:  validation
js-form-validator
Javascript form validation. Pure JS. No jQuery
Stars: ✭ 38 (-85.82%)
Mutual labels:  validation
validada
Another library for defensive data analysis.
Stars: ✭ 29 (-89.18%)
Mutual labels:  validation
FluentValidation.Extensions.Br
An extension of the fluent validation with a set of Brazilian validations
Stars: ✭ 23 (-91.42%)
Mutual labels:  validation
nexus-validate
🔑 Add argument validation to your GraphQL Nexus API.
Stars: ✭ 29 (-89.18%)
Mutual labels:  validation
Creditcard.js
A simple credit cards validation library in JavaScript
Stars: ✭ 259 (-3.36%)
Mutual labels:  validation
flask-pydantic
flask extension for integration with the awesome pydantic package
Stars: ✭ 181 (-32.46%)
Mutual labels:  validation
strickland
Strickland is a JavaScript validation framework with a focus on extensibility and composition
Stars: ✭ 16 (-94.03%)
Mutual labels:  validation
valid-data-url
Detect if a string is a data URL
Stars: ✭ 17 (-93.66%)
Mutual labels:  validation
Dirty cat
Encoding methods for dirty categorical variables
Stars: ✭ 259 (-3.36%)
Mutual labels:  data-cleaning
Async Validate
Asynchronous type validation for node and the browser
Stars: ✭ 257 (-4.1%)
Mutual labels:  validation

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].