{"id":14066489,"url":"https://github.com/spsanderson/healthyR","last_synced_at":"2025-07-29T23:31:27.747Z","repository":{"id":40401754,"uuid":"302431835","full_name":"spsanderson/healthyR","owner":"spsanderson","description":"Hospital Data Analysis Workflow Tools","archived":false,"fork":false,"pushed_at":"2024-07-04T11:47:46.000Z","size":31314,"stargazers_count":31,"open_issues_count":2,"forks_count":3,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-07-24T18:25:29.478Z","etag":null,"topics":["analysis","analytics","cran","healthcare","healthyr","r","r-package","rstats"],"latest_commit_sha":null,"homepage":"https://www.spsanderson.com/healthyR","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/spsanderson.png","metadata":{"files":{"readme":"README.Rmd","changelog":"NEWS.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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":"2020-10-08T18:41:53.000Z","updated_at":"2025-06-06T04:29:08.000Z","dependencies_parsed_at":"2024-08-13T07:11:10.815Z","dependency_job_id":"24d24283-82ad-4921-a94b-782c951743bd","html_url":"https://github.com/spsanderson/healthyR","commit_stats":{"total_commits":385,"total_committers":3,"mean_commits":"128.33333333333334","dds":0.2987012987012987,"last_synced_commit":"d3e7610077d42a2460dd420fe1c298ad01808357"},"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"purl":"pkg:github/spsanderson/healthyR","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spsanderson%2FhealthyR","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spsanderson%2FhealthyR/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spsanderson%2FhealthyR/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spsanderson%2FhealthyR/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/spsanderson","download_url":"https://codeload.github.com/spsanderson/healthyR/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spsanderson%2FhealthyR/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267779974,"owners_count":24143200,"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","status":"online","status_checked_at":"2025-07-29T02:00:12.549Z","response_time":2574,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["analysis","analytics","cran","healthcare","healthyr","r","r-package","rstats"],"created_at":"2024-08-13T07:05:07.707Z","updated_at":"2025-07-29T23:31:25.740Z","avatar_url":"https://github.com/spsanderson.png","language":"R","funding_links":[],"categories":["R"],"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, include = FALSE}\nknitr::opts_chunk$set(\n  collapse = TRUE,\n  comment = \"#\u003e\",\n  fig.path = \"man/figures/README-\",\n  out.width = \"100%\",\n  message = FALSE,\n  warning = FALSE\n)\n```\n\n# healthyR \u003cimg src=\"man/figures/logo.png\" width=\"147\" height=\"170\" align=\"right\" /\u003e\n\n\u003c!-- badges: start --\u003e\n[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/healthyR)](https://cran.r-project.org/package=healthyR)\n![](https://cranlogs.r-pkg.org/badges/healthyR)\n![](https://cranlogs.r-pkg.org/badges/grand-total/healthyR)\n[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html##experimental)\n[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](https://makeapullrequest.com)\n\u003c!-- badges: end --\u003e\n\nThe goal of healthyR is to help quickly analyze common data problems in the Administrative and Clincial spaces.\n\n## Installation\n\nYou can install the released version of healthyR from [CRAN](https://CRAN.R-project.org) with:\n\n``` r\ninstall.packages(\"healthyR\")\n```\n\nAnd the development version from [GitHub](https://github.com/) with:\n\n``` r\n# install.packages(\"devtools\")\ndevtools::install_github(\"spsanderson/healthyR\")\n```\n## Example\n\nThis is a basic example of using the ts_median_excess_plt() function`:\n\n```{r example}\nlibrary(healthyR)\nlibrary(timetk)\nlibrary(dplyr)\n\nts_signature_tbl(.data = m4_daily, .date_col = date, .pad_time = TRUE, id) %\u003e%\n    ts_median_excess_plt(\n        .date_col           = date\n        , .value_col        = value\n        , .x_axis           = week\n        , .ggplot_group_var = year\n        , .years_back       = 5\n    )\n```\n\nHere is a simple example of using the ts_signature_tbl() function:\n\n```{r cars}\nlibrary(healthyR)\nlibrary(timetk)\n\nts_signature_tbl(.data = m4_daily, .date_col = date)\n```\n\n\nHere is a simple example of using the plt_gartner_magic_chart() function:\n```{r gartner_chart}\n\nsuppressPackageStartupMessages(library(healthyR))\nsuppressPackageStartupMessages(library(tibble))\nsuppressPackageStartupMessages(library(dplyr))\n\ngartner_magic_chart_plt(\n  .data = tibble(x = rnorm(100, 0, 1), y = rnorm(100, 0, 1))\n  , .x_col = x\n  , .y_col = y\n  , .y_lab = \"los\"\n  , .x_lab = \"RA\"\n  , .plot_title = \"Test Title\"\n  , .top_left_label = \"Top Left lbl\"\n  , .top_right_label = \"Top Right lbl\"\n  , .bottom_left_label = \"Bottom Left lbl\"\n  , .bottom_right_label = \"Bottom Right lbl\"\n)\n\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspsanderson%2FhealthyR","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fspsanderson%2FhealthyR","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspsanderson%2FhealthyR/lists"}