Description Usage Format Source Examples
Age at first marriage of 5,534 US women who responded to the National Survey of Family Growth (NSFG) conducted by the CDC in the 2006 and 2010 cycle.
1 |
A data frame with 5,534 observations and 1 variable.
Age a first marriage.
National Survey of Family Growth, 2006-2010 cycle, https://www.cdc.gov/nchs/nsfg/nsfg_2006_2010_puf.htm.
1 2 3 4 5 6 | library(ggplot2)
ggplot(age_at_mar, mapping = aes(x = age)) +
geom_histogram(binwidth = 3) +
labs(x = "Age", y = "Count", title = "Age at first marriage, US Women",
subtitle = "Source: National Survey of Family Growth Survey, 2006 - 2010")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.