knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "README-"
)

DataAnalysisTools

Travis-CI Build Sta3tus Coverage Status AppVeyor Build Status

Convenient and simple data analysis tools for day-to-day use. Mostly to get a first look at data attributes. Output is usually structured to allow for rowbinding, to allow for comparison of different data sets or subsets/versions.

Installation

You can install DataAnalysisTools from github with:

# install.packages("devtools")
devtools::install_github("julianbarg/DataAnalysisTools")

Example

The functions in DataAnalysisTools cover everyday tasks carried out by data scientists and provide for easy-to-read code from the get-go.

build_NA <- DataAnalysisTools::build_NA
NA1 <- build_NA(mtcars)
NA2 <- build_NA(cars)
NA_statistics <- rbind(NA1, NA2)
NA_statistics


julianbarg/DataAnalysisTools documentation built on April 9, 2020, 11:43 a.m.