{"id":23260834,"url":"https://github.com/rsquaredacademy/descriptr","last_synced_at":"2025-04-07T10:22:35.252Z","repository":{"id":48838425,"uuid":"74331764","full_name":"rsquaredacademy/descriptr","owner":"rsquaredacademy","description":"Generate descriptive statistics","archived":false,"fork":false,"pushed_at":"2024-11-08T10:06:53.000Z","size":15189,"stargazers_count":34,"open_issues_count":0,"forks_count":12,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-03-31T06:02:59.595Z","etag":null,"topics":["descriptive-statistics","eda","rstats","summary-statistics"],"latest_commit_sha":null,"homepage":"https://descriptr.rsquaredacademy.com/","language":"R","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rsquaredacademy.png","metadata":{"files":{"readme":"README.Rmd","changelog":"NEWS.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":"docs/SUPPORT.html","governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-11-21T06:09:32.000Z","updated_at":"2024-12-30T22:22:49.000Z","dependencies_parsed_at":"2024-08-03T08:30:37.144Z","dependency_job_id":"e808a17c-4f51-406f-a76b-5664a94f87a2","html_url":"https://github.com/rsquaredacademy/descriptr","commit_stats":{"total_commits":416,"total_committers":2,"mean_commits":208.0,"dds":0.007211538461538436,"last_synced_commit":"aec4736f91e4d263d0f227de3a8e641f171d81a2"},"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rsquaredacademy%2Fdescriptr","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rsquaredacademy%2Fdescriptr/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rsquaredacademy%2Fdescriptr/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rsquaredacademy%2Fdescriptr/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rsquaredacademy","download_url":"https://codeload.github.com/rsquaredacademy/descriptr/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247632135,"owners_count":20970118,"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":["descriptive-statistics","eda","rstats","summary-statistics"],"created_at":"2024-12-19T13:19:04.568Z","updated_at":"2025-04-07T10:22:35.219Z","avatar_url":"https://github.com/rsquaredacademy.png","language":"R","funding_links":[],"categories":[],"sub_categories":[],"readme":"---\noutput: github_document\n---\n\n\u003c!-- README.md is generated from README.Rmd. Please edit that file --\u003e\n\n```{r, echo = FALSE}\nknitr::opts_chunk$set(\n  collapse = TRUE,\n  comment = \"#\u003e\",\n  fig.path = \"README-\"\n)\n```\n\n# descriptr \n\n\u003e Generate descriptive statistics\n\n\u003c!-- badges: start --\u003e\n[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/descriptr)](https://cran.r-project.org/package=descriptr) \n[![R-CMD-check](https://github.com/rsquaredacademy/descriptr/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/rsquaredacademy/descriptr/actions/workflows/R-CMD-check.yaml)\n[![Codecov test coverage](https://codecov.io/gh/rsquaredacademy/descriptr/graph/badge.svg)](https://app.codecov.io/gh/rsquaredacademy/descriptr)\n\u003c!-- badges: end --\u003e\n\n\n## Installation\n\n```{r cran-installation, eval = FALSE}\n# Install release version from CRAN\ninstall.packages(\"descriptr\")\n\n# Install development version from GitHub\n# install.packages(\"devtools\")\ndevtools::install_github(\"rsquaredacademy/descriptr\")\n\n# Install the development version from `rsquaredacademy` universe\ninstall.packages(\"descriptr\", repos = \"https://rsquaredacademy.r-universe.dev\")\n```\n\n## Articles\n\n- [Continuous Data](https://descriptr.rsquaredacademy.com/articles/continuous-data.html)\n- [Categorical Data](https://descriptr.rsquaredacademy.com/articles/categorical-data.html)\n- [Visualization](https://descriptr.rsquaredacademy.com/articles/visualization.html)\n\n## Usage\n\nWe will use a modified version of the `mtcars` data set in the below examples. \nThe only difference between the data sets is related to the variable types.\n\n```{r load, eval=TRUE, echo=FALSE}\nlibrary(descriptr)\n```\n\n```{r egdata}\nstr(mtcarz)\n```\n\n### Continuous Data\n\n#### Summary Statistics\n\n```{r descript1}\nds_summary_stats(mtcarz, mpg)\n```\n\n#### Frequency Distribution\n\n```{r descript4}\nds_freq_table(mtcarz, mpg)\n```\n\n### Categorical Data\n\n#### One Way Table\n\n```{r descript3}\nds_freq_table(mtcarz, cyl)\n```\n\n#### Two Way Table\n\n```{r descript2}\nds_cross_table(mtcarz, cyl, gear)\n```\n\n### Group Summary\n\n```{r descript5}\nds_group_summary(mtcarz, cyl, mpg)\n```\n\n#### Multiple Variable Statistics\n\n```{r descriptr6}\nds_tidy_stats(mtcarz, mpg, disp, hp)\n```\n\n## Features\n\n- Summary statistics\n- Two way tables\n- One way table\n- Group wise summary\n- Multiple variable statistics\n- Multiple one way tables\n- Multiple two way tables\n\n## Getting Help\n\nIf you encounter a bug, please file a minimal reproducible example using \n[reprex](https://reprex.tidyverse.org/index.html) on github. For questions and \nclarifications, use [StackOverflow](https://stackoverflow.com/).\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frsquaredacademy%2Fdescriptr","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frsquaredacademy%2Fdescriptr","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frsquaredacademy%2Fdescriptr/lists"}