The goal of healthyR.ai is to create a verb framework that allows for easy exploration, transformation and modeling of data.
You can install the released version of healthyR.ai from CRAN with:
install.packages("healthyR.ai")
And the development version from GitHub with:
# install.packages("devtools")
::install_github("spsanderson/healthyR.ai") devtools
This is a basic example which shows you how to solve a common problem:
library(healthyR.ai)
#>
#> == Welcome to healthyR.ai ===========================================================================
#> If you find this package useful, please leave a star:
#> https://github.com/spsanderson/healthyR.ai'
#>
#> If you encounter a bug or want to request an enhancement please file an issue at:
#> https://github.com/spsanderson/healthyR.ai/issues
#>
#> Thank you for using healthyR.ai
library(ggplot2)
<- tibble::tibble(
data_tbl day = sample(c("Monday", "Tuesday", "Wednesday", "Thursday", "Friday"),
100, TRUE),
person = sample(c("Tom", "Jane", "Alex"), 100, TRUE),
count = rbinom(100, 20, ifelse(day == "Friday", .5, .2)),
date = Sys.Date() - sample.int(100))
<- hai_control_chart(data_tbl, count, date) my_chart
+
my_chart ylab("Number of Adverse Events") +
scale_x_date(name = "Week of ... ", date_breaks = "week") +
theme(axis.text.x = element_text(angle = -90, vjust = 0.5, hjust=1))