Access to Colorectal Screening Data
Source:R/risk-colorectal-screening.R
risk_colorectal_screening.RdThis function returns a data frame about colorectal screening from State Cancer Profiles.
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.
See also
Other risks:
risk_alcohol(),
risk_diet_exercise(),
risk_smoking(),
risk_vaccines(),
risk_women_health()
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"
)
}