Skip to contents

This function returns a data frame about vaccines risks from State Cancer Profiles.

Usage

risk_vaccines(vaccine, sex)

Arguments

vaccine

One of the following values:

  • "percent with up to date hpv vaccination coverage, ages 13-15",

  • "percent with up to date hpv vaccination coverage, ages 13-17".

sex

One of the following values:

  • "both sexes"

  • "male"

  • "female".

Value

A data frame with the following columns: Area Type, Area Code, Percent, Lower 95% CI, Upper 95% CI, Number of Respondents.

Examples

if (FALSE) {
risk_vaccines(
  vaccine = "percent with up to date hpv vaccination coverage, ages 13-15",
  sex = "both sexes"
)

risk_vaccines(
  vaccine = "percent with up to date hpv vaccination coverage, ages 13-17",
  sex = "females"
)
}