Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/RhoInc/datadigest
- Owner: RhoInc
- License: other
- Created: 2017-05-30T19:14:35.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-02-24T21:50:29.000Z (over 4 years ago)
- Last Synced: 2024-07-29T19:26:36.177Z (3 months ago)
- Topics: htmlwidgets, r, rstudio-addin, shiny
- Language: JavaScript
- Homepage: https://rhoinc.github.io/web-codebook/test-page/default/
- Size: 368 KB
- Stars: 57
- Watchers: 14
- Forks: 9
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - RhoInc/datadigest - Concise interactive data summaries in R (JavaScript)
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.