{"id":13400797,"url":"https://github.com/alastairrushworth/inspectdf","last_synced_at":"2025-04-13T05:04:44.469Z","repository":{"id":47676350,"uuid":"157981172","full_name":"alastairrushworth/inspectdf","owner":"alastairrushworth","description":"🛠️ 📊 Tools for Exploring and Comparing Data Frames","archived":false,"fork":false,"pushed_at":"2024-08-04T07:45:26.000Z","size":26140,"stargazers_count":251,"open_issues_count":13,"forks_count":24,"subscribers_count":13,"default_branch":"master","last_synced_at":"2025-04-13T05:04:29.755Z","etag":null,"topics":["comparison","dataframe","eda","exploratory-data-analysis","r","rstats","visualization"],"latest_commit_sha":null,"homepage":"https://alastairrushworth.github.io/inspectdf/","language":"R","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/alastairrushworth.png","metadata":{"files":{"readme":"README.Rmd","changelog":"NEWS.Rmd","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-11-17T12:12:30.000Z","updated_at":"2024-12-15T04:18:57.000Z","dependencies_parsed_at":"2024-11-29T22:32:42.930Z","dependency_job_id":null,"html_url":"https://github.com/alastairrushworth/inspectdf","commit_stats":{"total_commits":310,"total_committers":5,"mean_commits":62.0,"dds":0.0903225806451613,"last_synced_commit":"5c516e3ee28c63a56622948ab612bc8f3d48ba47"},"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alastairrushworth%2Finspectdf","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alastairrushworth%2Finspectdf/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alastairrushworth%2Finspectdf/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alastairrushworth%2Finspectdf/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/alastairrushworth","download_url":"https://codeload.github.com/alastairrushworth/inspectdf/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248665748,"owners_count":21142123,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["comparison","dataframe","eda","exploratory-data-analysis","r","rstats","visualization"],"created_at":"2024-07-30T19:00:55.592Z","updated_at":"2025-04-13T05:04:44.449Z","avatar_url":"https://github.com/alastairrushworth.png","language":"R","funding_links":[],"categories":["R"],"sub_categories":[],"readme":"---\noutput: github_document\n---\n\n```{r, echo = FALSE}\nknitr::opts_chunk$set(\n  fig.path = \"man/figures/README-\"\n)\n```\n\n\n# inspectdf \u003cimg src=\"man/figures/logo.png\" align=\"right\" width=\"120\" /\u003e\n\n![build](https://github.com/alastairrushworth/inspectdf/workflows/R-CMD-check/badge.svg)\n[![codecov](https://codecov.io/gh/alastairrushworth/inspectdf/branch/master/graph/badge.svg)](https://codecov.io/gh/alastairrushworth/inspectdf)\n[![CRAN status](https://www.r-pkg.org/badges/version/inspectdf)](https://cran.r-project.org/package=inspectdf)\n[![](https://cranlogs.r-pkg.org/badges/inspectdf)](https://cran.r-project.org/package=inspectdf)\n[![cran checks](https://cranchecks.info/badges/summary/inspectdf)](https://cran.r-project.org/web/checks/check_results_inspectdf.html)  \n\nOverview\n---\n\n`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.  \n\nThe package has three aims:  \n\n+ to speed up repetitive checking and exploratory tasks for data frames  \n+ to make it easier to compare data frames for differences and inconsistencies\n+ to support quick visualisation of data frames\n\nCheck out the [package website](https://alastairrushworth.github.io/inspectdf/) for further documentation and examples.\n\nInstallation \n---\n\nTo install the development version of the package, use\n```{r, eval = FALSE}\ndevtools::install_github(\"alastairrushworth/inspectdf\")\n```\n\nTo install the CRAN version of the package, use\n```{r, eval = FALSE}\ninstall.packages(\"inspectdf\")\n```\n\nKey functions\n---  \n\n+ [`inspect_types()`](https://alastairrushworth.github.io/inspectdf/articles/pkgdown/inspect_types_examples.html) summary of column types\n+ [`inspect_mem()`](https://alastairrushworth.github.io/inspectdf/articles/pkgdown/inspect_mem_examples.html) summary of memory usage of columns\n+ [`inspect_na()`](https://alastairrushworth.github.io/inspectdf/articles/pkgdown/inspect_na_examples.html) columnwise prevalence of missing values\n+ [`inspect_cor()`](https://alastairrushworth.github.io/inspectdf/articles/pkgdown/inspect_cor_exampes.html) correlation coefficients of numeric columns\n+ [`inspect_imb()`](https://alastairrushworth.github.io/inspectdf/articles/pkgdown/inspect_imb_examples.html) feature imbalance of categorical columns\n+ [`inspect_num()`](https://alastairrushworth.github.io/inspectdf/articles/pkgdown/inspect_num_examples.html) summaries of numeric columns\n+ [`inspect_cat()`](https://alastairrushworth.github.io/inspectdf/articles/pkgdown/inspect_cat_examples.html) summaries of categorical columns\n\n\nComments? Suggestions? Issues?\n---  \n\nAny feedback is welcome! Feel free to write a github issue or send me a message on [twitter](https://twitter.com/rushworth_a).\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falastairrushworth%2Finspectdf","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falastairrushworth%2Finspectdf","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falastairrushworth%2Finspectdf/lists"}