-
Notifications
You must be signed in to change notification settings - Fork 25
/
README.Rmd
79 lines (44 loc) · 2.8 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
---
output: github_document
---
```{r, echo = FALSE}
knitr::opts_chunk$set(
fig.path = "man/figures/README-"
)
```
# inspectdf <img src="man/figures/logo.png" align="right" width="120" />
![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 frames
Check 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 columns
Comments? 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).