pm_box(id, x = "STUDYc", y = "WT")
13.1 General boxplot [pm_box]
This is also called cont_cat()
.
Vectorized
<- c("WT", "AGE", "ALB")
covs
pm_box(id, x = "STUDYc", y = covs) %>%
pm_grid(ncol = 3)
13.2 General scatter plot [pm_scatter]
pm_scatter(id, x = "WT", y = "CRCL")
This is also called cont_cont()
.
Vectorized
<- c("SCR", "AGE", "ALB")
covs
pm_scatter(id, x = "WT", y = covs) %>%
pm_grid(ncol = 3)
13.3 General histogram [cont_hist]
cont_hist(id, x = "WT", bins = 20)