Skip to contents

This function returns a data frame about women's health risks from State Cancer Profiles.

Usage

risk_women_health(
  women_health,
  race,
  datatype = "direct estimates",
  area = NULL
)

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.

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)"
)
}