Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/hadley/precis
- Owner: hadley
- Created: 2017-01-15T22:44:49.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-01-16T02:45:28.000Z (almost 8 years ago)
- Last Synced: 2024-11-01T10:42:24.167Z (12 days ago)
- Language: R
- Size: 13.7 KB
- Stars: 64
- Watchers: 6
- Forks: 3
- Open Issues: 3
-
Metadata Files:
- Readme: README.Rmd
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")
```