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

profilr

CRAN_Status_Badge Downloads from the RStudio CRAN mirror Build Status Build status codecov.io Project Status: Active - The project has reached a stable, usable state and is being actively developed.

profilr quickly and easily profiles data using common descriptive statistics.

Installation

You can install the latest development version from CRAN:

install.packages("profilr")
````

Or from GitHub with:

```R
if (packageVersion("devtools") < 1.6) {
  install.packages("devtools")
}
devtools::install_github("paulhendricks/profilr")

If you encounter a clear bug, please file a minimal reproducible example on GitHub.

API

library(dplyr, warn.conflicts = FALSE)
library(profilr)

mtcars %>% 
  profile

mtcars %>% 
  group_by(cyl) %>% 
  do(profile(.))

Citation

To cite package ‘profilr’ in publications use:

Paul Hendricks (2015). profilr: Quickly Profile Data in R. R package version 0.1.0. https://CRAN.R-project.org/package=profilr

A BibTeX entry for LaTeX users is

@Manual{,
  title = {profilr: Quickly Profile Data in R},
  author = {Paul Hendricks},
  year = {2015},
  note = {R package version 0.1.0},
  url = {https://CRAN.R-project.org/package=profilr},
}


paulhendricks/profilr documentation built on May 24, 2019, 8:43 p.m.