ropensci/assertr

Name: assertr

Owner: rOpenSci

Description: Assertive programming for R analysis pipelines

Created: 2015-01-20 18:11:23.0

Updated: 2018-01-02 06:48:28.0

Pushed: 2017-12-01 21:56:43.0

Homepage:

Size: 14419

Language: R

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

assertr

assertr logo

Build Status CRAN RStudio mirror downloads

What is it?

The assertr package supplies a suite of functions designed to verify assumptions about data early in an analysis pipeline so that data errors are spotted early and can be addressed quickly.

This package does not need to be used with the magrittr/dplyr piping mechanism but the examples in this README use them for clarity.

Installation

You can install the latest version on CRAN like this

install.packages("assertr")

or you can install the bleeding-edge development version like this:

install.packages("devtools")
devtools::install_github("ropensci/assertr")
What does it look like?

This package offers five assertion functions, assert, verify, insist, assert_rows, and insist_rows, that are designed to be used shortly after data-loading in an analysis pipeline…

Let?s say, for example, that the R?s built-in car dataset, mtcars, was not built-in but rather procured from an external source that was known for making errors in data entry or coding. Pretend we wanted to find the average miles per gallon for each number of engine cylinders. We might want to first, confirm

This could be written (in order) using assertr like this:

library(dplyr)
library(assertr)

mtcars %>%
  verify(has_all_names("mpg", "vs", "am", "wt")) %>%
  verify(nrow(.) > 10) %>%
  verify(mpg > 0) %>%
  insist(within_n_sds(4), mpg) %>%
  assert(in_set(0,1), am, vs) %>%
  assert_rows(num_row_NAs, within_bounds(0,2), everything()) %>%
  assert_rows(col_concat, is_uniq, mpg, am, wt) %>%
  insist_rows(maha_dist, within_n_mads(10), everything()) %>%
  group_by(cyl) %>%
  summarise(avg.mpg=mean(mpg))

If any of these assertions were violated, an error would have been raised and the pipeline would have been terminated early.

What does assertr give me?

assertr also offers four (so far) predicate functions designed to be used with the assert and assert_rows functions:

and predicate generators designed to be used with the insist and insist_rows functions:

and the following row reduction functions designed to be used with assert_rows and insist_rows:

More info

For more info, check out the assertr vignette

> vignette("assertr")

Or read it here

ropensci\_footer


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.