This function returns a data frame about women's health risks from State Cancer Profiles.
Arguments
- women_health
 One of the following values:
"mammogram in past 2 years, ages 50-74""mammogram in past 2 years, ages 40+""pap smear in past 3 years, no hysterectomy, ages 21-65".
- race
 One of the following values
"All Races (includes Hispanic)""White (non-Hispanic)""Black (non-Hispanic)""American Indian / Alaska Native (non-Hispanic)""Asian / Pacific Islander (non-Hispanic)""Hispanic (Any Race)".
- datatype
 One of the following values:
"direct estimates""county level modeled estimates".
- area
 A state/territory abbreviation or USA.
Value
A data frame with the following columns: Area Type, Area Code, Percent, People Unemployed, Rank.
See also
Other risks: 
risk_alcohol(),
risk_colorectal_screening(),
risk_diet_exercise(),
risk_smoking(),
risk_vaccines()
Examples
if (FALSE) {
risk_women_health(
  women_health = "mammogram in past 2 years, ages 50-74",
  race = "all races (includes hispanic)",
  datatype = "direct estimates"
)
risk_women_health(
  women_health = "pap smear in past 3 years, no hysterectomy, ages 21-65",
  race = "all races (includes hispanic)",
  datatype = "county level modeled estimates",
  area = "wa"
)
risk_women_health(
  women_health = "pap smear in past 3 years, no hysteroetomy, ages 21-65",
  race = "black (non-hispanic)"
)
}