Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/RhoInc/datadigest

Concise interactive data summaries in R
https://github.com/RhoInc/datadigest

htmlwidgets r rstudio-addin shiny

Last synced: 3 months ago
JSON representation

Concise interactive data summaries in R

Awesome Lists containing this project

README

        

[![Travis-CI Build Status](https://travis-ci.org/RhoInc/datadigest.svg?branch=master)](https://travis-ci.org/RhoInc/datadigest)

# Data Digest

The **datadigest** package provides a simple interactive framework for exploring data. You can:
- Try it out at the [demo site](https://rhoinc.github.io/viz-library/examples/0009-web-codebook-demo/example.html)
- Run it yourself using the [sample code below](https://github.com/RhoInc/codebook#usage).
- Read more in the [manuscript](https://phusewiki.org/docs/2018_US%20Connect18/DV%20STREAM/dv12%20final.pdf)
- Get technical details in the [wiki](https://github.com/RhoInc/codebook/wiki)
- Check out the associated [web-codebook](https://github.com/RhoInc/web-codebook) github repo
- Explore common use cases in the [vignette](https://cran.r-project.org/web/packages/datadigest/vignettes/datadigest.html)
- View the R package page on [CRAN](https://cran.r-project.org/web/packages/datadigest/index.html)
- See a screenshot below

![codebook image](https://user-images.githubusercontent.com/14199771/43269882-ccc06a26-90c1-11e8-9026-a91d67a57fcf.png)

## Usage

Installing and using datadigest typically only requires a few lines of code. To summarize a single file:

```r
install.packages("datadigest")
library("datadigest")
codebook(data = mtcars)
```

Or to explore all of the data loaded in the current R session:

```r
install.packages("datadigest")
library("datadigest")
explorer(demo = TRUE)
```

Note that the name of this repo changed from "rhoinc/codebook" to "rhoinc/datadigest" prior to the release of v1.0.2 on CRAN. Any links to the codebook repo will automatically redirect.