Skip to contents

This function returns a data frame about colorectal screening from State Cancer Profiles.

Usage

risk_colorectal_screening(screening, race = NULL, sex = NULL, area = NULL)

Arguments

screening

One of the following values:

  • "ever had fobt, ages 50-75"

  • "guidance sufficient crc, ages 50-75"

  • "had colonoscopy in past 10 years, ages 50-75"

  • "home blood stool test in the past year, ages 45-75"

  • "received at least one recommended crc test, ages 45-75".

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

sex

One of the following values:

  • "both sexes"

  • "male"

  • "female".

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_colorectal_screening(
  screening = "home blood stool test in the past year, ages 45-75",
  race = "all races (includes hispanic)",
  sex = "both sexes"
)

risk_colorectal_screening(
  screening = "ever had fobt, ages 50-75",
  area = "usa"
)
risk_colorectal_screening(
  screening = "received at least one recommended crc test, ages 45-75",
  race = "all races (includes hispanic)",
  sex = "both sexes"
)
}