pivot_wider()
pivot_longer()
ggcorrplot
visreg
ggsurvplot
vcd
An alternative to a histogram, a density plot also shows the distribution of a single numeric variable.
# Create a kernel density plot of age ggplot(Marriage, aes(x = age)) + geom_density() + labs(title = "Participants by age")