library(pmplots) library(dplyr) data <- pmplots_data_id()
A good workflow is to create a character vector of your etas and their names.
etas <- c("ETA1//ETA-CL", "ETA2//ETA-VC", "ETA3//ETA-KA") etas
Note that very frequently, ETA plots come back as a list of plots,
one for each ETA. You can combine them together into a single plot using
pm_grid()
or patchwork::wrap_plots()
.
eta_hist(data,etas) %>% pm_grid()
eta_pairs(data, etas)
eta_cat(data, x = "STUDYc", y = etas) %>% pm_grid()
eta_cont(data, x = "WT", y = etas) %>% pm_grid()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.