The datadigest package provides a simple interactive framework for exploring data. You can:
- Try it out at the demo site
- Run it yourself using the sample code below.
- Read more in the manuscript
- Get technical details in the wiki
- Check out the associated web-codebook github repo
- Explore common use cases in the vignette
- View the R package page on CRAN
- See a screenshot below
Installing and using datadigest typically only requires a few lines of code. To summarize a single file:
install.packages("datadigest")
library("datadigest")
codebook(data = mtcars)
Or to explore all of the data loaded in the current R session:
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.