pivot_wider()
pivot_longer()
ggcorrplot
visreg
ggsurvplot
vcd
A histogram is used to study the distribution of a single quantitative variable.
# plot the age distribution using a histogram ggplot(Marriage, aes(x = age)) + geom_histogram() + labs(title = "Participants by age", x = "Age")