Description Usage Format Source References Examples
Number of dependent children for 50 randomly selected families
1 |
A data frame with 50 observations on 1 variable:
number
(number of dependent children)
Kitchens, L. J. 2003. Basic Statistics and Data Analysis. Duxbury.
Ugarte, M. D., Militino, A. F., and Arnholt, A. T. 2015. Probability and Statistics with R, Second Edition. Chapman & Hall / CRC.
1 2 3 4 5 | xtabs(~number, data = DEPEND)
ggplot(data = DEPEND, aes(x = factor(number))) +
geom_bar(fill = "cornsilk", color = "orange") + labs(x = "Number of Dependent Children")
ggplot(data = DEPEND, aes(x = number)) + geom_density(fill = "pink", alpha = 0.3,
color = "red") + labs(x = "Number of Dependent Children")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.