pivot_wider()
pivot_longer()
ggcorrplot
visreg
ggsurvplot
vcd
Another alternative to the histogram is the dot chart.
# plot the age distribution using a dotplot ggplot(Marriage, aes(x = age)) + geom_dotplot() + labs(title = "Participants by age", y = "Proportion", x = "Age")