knitr::opts_chunk$set( collapse = TRUE, comment = "#>", fig.path = "README-" )
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.
You can install DataAnalysisTools from github with:
# install.packages("devtools") devtools::install_github("julianbarg/DataAnalysisTools")
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
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.