Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hadley/precis

Succintly Summarise Data Frames
https://github.com/hadley/precis

Last synced: 5 days ago
JSON representation

Succintly Summarise Data Frames

Awesome Lists containing this project

README

        

---
output: github_document
---

```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```

# precis

[![Travis-CI Build Status](https://travis-ci.org/hadley/precis.svg?branch=master)](https://travis-ci.org/hadley/precis)
[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/precis)](https://cran.r-project.org/package=precis)

The precis package is designed to replace `base::summary()`

```{r}
library(precis)

precis(mtcars)

precis(ggplot2::diamonds)
```

## Installation

precis is not currently available on CRAN, but you can install it with:

```{r, eval = FALSE}
# install.packages("devtools")
devtools::install_github("hadley/precis")
```