Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alastairrushworth/inspectdf
🛠️ 📊 Tools for Exploring and Comparing Data Frames
https://github.com/alastairrushworth/inspectdf
comparison dataframe eda exploratory-data-analysis r rstats visualization
Last synced: 1 day ago
JSON representation
🛠️ 📊 Tools for Exploring and Comparing Data Frames
- Host: GitHub
- URL: https://github.com/alastairrushworth/inspectdf
- Owner: alastairrushworth
- Created: 2018-11-17T12:12:30.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-08-04T07:45:26.000Z (5 months ago)
- Last Synced: 2025-01-03T23:05:01.499Z (8 days ago)
- Topics: comparison, dataframe, eda, exploratory-data-analysis, r, rstats, visualization
- Language: R
- Homepage: https://alastairrushworth.github.io/inspectdf/
- Size: 24.9 MB
- Stars: 251
- Watchers: 14
- Forks: 25
- Open Issues: 13
-
Metadata Files:
- Readme: README.Rmd
- Changelog: NEWS.Rmd
Awesome Lists containing this project
- jimsghstars - alastairrushworth/inspectdf - 🛠️ 📊 Tools for Exploring and Comparing Data Frames (R)
README
---
output: github_document
---```{r, echo = FALSE}
knitr::opts_chunk$set(
fig.path = "man/figures/README-"
)
```# inspectdf
![build](https://github.com/alastairrushworth/inspectdf/workflows/R-CMD-check/badge.svg)
[![codecov](https://codecov.io/gh/alastairrushworth/inspectdf/branch/master/graph/badge.svg)](https://codecov.io/gh/alastairrushworth/inspectdf)
[![CRAN status](https://www.r-pkg.org/badges/version/inspectdf)](https://cran.r-project.org/package=inspectdf)
[![](https://cranlogs.r-pkg.org/badges/inspectdf)](https://cran.r-project.org/package=inspectdf)
[![cran checks](https://cranchecks.info/badges/summary/inspectdf)](https://cran.r-project.org/web/checks/check_results_inspectdf.html)Overview
---`inspectdf` is collection of utilities for columnwise summary, comparison and visualisation of data frames. Functions are provided to summarise missingness, categorical levels, numeric distribution, correlation, column types and memory usage.
The package has three aims:
+ to speed up repetitive checking and exploratory tasks for data frames
+ to make it easier to compare data frames for differences and inconsistencies
+ to support quick visualisation of data framesCheck out the [package website](https://alastairrushworth.github.io/inspectdf/) for further documentation and examples.
Installation
---To install the development version of the package, use
```{r, eval = FALSE}
devtools::install_github("alastairrushworth/inspectdf")
```To install the CRAN version of the package, use
```{r, eval = FALSE}
install.packages("inspectdf")
```Key functions
---+ [`inspect_types()`](https://alastairrushworth.github.io/inspectdf/articles/pkgdown/inspect_types_examples.html) summary of column types
+ [`inspect_mem()`](https://alastairrushworth.github.io/inspectdf/articles/pkgdown/inspect_mem_examples.html) summary of memory usage of columns
+ [`inspect_na()`](https://alastairrushworth.github.io/inspectdf/articles/pkgdown/inspect_na_examples.html) columnwise prevalence of missing values
+ [`inspect_cor()`](https://alastairrushworth.github.io/inspectdf/articles/pkgdown/inspect_cor_exampes.html) correlation coefficients of numeric columns
+ [`inspect_imb()`](https://alastairrushworth.github.io/inspectdf/articles/pkgdown/inspect_imb_examples.html) feature imbalance of categorical columns
+ [`inspect_num()`](https://alastairrushworth.github.io/inspectdf/articles/pkgdown/inspect_num_examples.html) summaries of numeric columns
+ [`inspect_cat()`](https://alastairrushworth.github.io/inspectdf/articles/pkgdown/inspect_cat_examples.html) summaries of categorical columnsComments? Suggestions? Issues?
---Any feedback is welcome! Feel free to write a github issue or send me a message on [twitter](https://twitter.com/rushworth_a).