diff --git a/data/yrbss/ingest.R b/data/yrbss/ingest.R new file mode 100644 index 00000000..26982fae --- /dev/null +++ b/data/yrbss/ingest.R @@ -0,0 +1,578 @@ +# ============================================================================= +# CDC YRBSS (Youth Risk Behavior Surveillance System) Data Ingestion +# Source: YRBS Explorer https://yrbs-explorer.services.cdc.gov/#/ +# +# The YRBS Explorer is a single-page app backed by a REST API at +# https://yrbs-explorer.services.cdc.gov/api +# Relevant endpoints (reverse-engineered from the app bundle): +# /Years/2 -> survey years +# /YrbsExplorerLocations -> national/state/local +# /Questions?SurveyId=2&ListOfYears=..&ListOfLocations=XX -> question catalog +# /ChartData?QuestionId={code}&LocationId={loc}&Yr=9999 -> all years, all strata +# +# Scope (per project request): +# - Geographies : National (00) + 47 states + DC +# - Years : 2005 onward +# - Questions : Curated subset across topics (see FULL_TOPICS + +# SELECT_CODES below): all of Physical Activity (C06) plus +# selected injury/violence, mental-health, tobacco, +# substance-use, diet, and other-health-topic items. +# - Strata : Total, Sex, Race, Grade. Sex->sex, Race->race_ethnicity, +# Grade->age (approximate modal age), Total->Overall. +# YRBSS provides MARGINAL strata only (each estimate is broken +# out by exactly one of these), so there is no age x sex cross. +# +# Output: three wide standard files, one per stratification dimension, each +# with one column per measure (value / _lcl / _ucl), BRFSS-style: +# standard/data_age.csv.gz keys: geography, time, age +# standard/data_age_sex.csv.gz keys: geography, time, age, sex +# standard/data_age_ethnicity.csv.gz keys: geography, time, age, race_ethnicity +# Suppressed values, topic, and question_code are dropped from the data files +# and documented in measure_info.json instead. +# ============================================================================= + +library(tidyverse) +library(jsonlite) +library(parallel) +library(dcf) + +BASE <- "https://yrbs-explorer.services.cdc.gov/api" +MIN_YEAR <- 2005 +# Topic codes to include in full (every question in the topic) +FULL_TOPICS <- c("C06") # all Physical Activity +# Individual question codes to include (in addition to FULL_TOPICS) +SELECT_CODES <- c( + # C01 Injuries & Violence + "H8", "H9", "H10", "H11", "H12", "H13", "H15", "H24", "H25", "H14", + "H27", "H28", "H29", "H30", + # C02 Tobacco + "H31", "H33", "H35", "H36", "H38", + # C03 Alcohol & Other Drug Use + "H42", "H43", "H46", "H47", "H48", "H49", "QNCURRENTOPIOID", + "H50", "H51", "H52", "H53", "H54", "QNHALLUCDRUG", "H55", "QNILLICT", + # C05 Dietary + "QNFR0", "QNVEG0", "H75", "QNBK7DAY", + # C08 Other Health Topics + "H84", "H85", "H86", "QNCLOSE2PEOPLE", "H80" +) +RAW_FILE <- "raw/yrbss_chartdata.csv.gz" + +# ----------------------------------------------------------------------------- +# Measure dictionary: maps each YRBSS question_code to a short descriptive +# variable slug used as the column name in the standard files. The value column +# is the slug itself; the 95% CI bounds are _lcl and _ucl. topic, +# question_code, and the full question text are carried through to +# measure_info.json (and dropped from the data files). +# ----------------------------------------------------------------------------- +measure_dict <- tibble::tribble( + ~question_code, ~slug, ~short_label, ~question_text, ~topic, + # ---- Unintentional Injuries and Violence (category: injury) ---- + "H8", "pct_no_seatbelt", "Did not always wear a seat belt", "Did not always wear a seat belt", "Unintentional Injuries and Violence", + "H9", "pct_rode_drinking_driver", "Rode with a drinking driver", "Rode with a driver who had been drinking alcohol", "Unintentional Injuries and Violence", + "H10", "pct_drove_drinking", "Drove after drinking alcohol", "Drove when they had been drinking alcohol", "Unintentional Injuries and Violence", + "H11", "pct_text_while_driving", "Texted/e-mailed while driving", "Texted or e-mailed while driving a car or other vehicle", "Unintentional Injuries and Violence", + "H12", "pct_carried_weapon_school", "Carried a weapon at school", "Carried a weapon on school property", "Unintentional Injuries and Violence", + "H13", "pct_carried_gun", "Carried a gun", "Carried a gun", "Unintentional Injuries and Violence", + "H14", "pct_unsafe_at_school", "Did not go to school, unsafe", "Did not go to school because they felt unsafe at school or on their way to or from school", "Unintentional Injuries and Violence", + "H15", "pct_threatened_weapon_school", "Threatened with weapon at school", "Were threatened or injured with a weapon on school property", "Unintentional Injuries and Violence", + "H24", "pct_bullied_at_school", "Bullied on school property", "Were bullied on school property", "Unintentional Injuries and Violence", + "H25", "pct_bullied_electronic", "Electronically bullied", "Were electronically bullied", "Unintentional Injuries and Violence", + "H27", "pct_considered_suicide", "Seriously considered suicide", "Seriously considered attempting suicide", "Unintentional Injuries and Violence", + "H28", "pct_planned_suicide", "Made a suicide plan", "Made a plan about how they would attempt suicide", "Unintentional Injuries and Violence", + "H29", "pct_attempted_suicide", "Attempted suicide", "Actually attempted suicide", "Unintentional Injuries and Violence", + "H30", "pct_injurious_suicide_attempt","Injurious suicide attempt", "Had a suicide attempt that resulted in an injury, poisoning, or overdose that had to be treated by a doctor or nurse", "Unintentional Injuries and Violence", + # ---- Tobacco Use (category: chronic) ---- + "H31", "pct_ever_cigarette", "Ever smoked a cigarette", "Ever smoked a cigarette", "Tobacco Use", + "H33", "pct_current_cigarette", "Currently smoked cigarettes", "Currently smoked cigarettes", "Tobacco Use", + "H35", "pct_ever_vape", "Ever used vapor products", "Ever used electronic vapor products", "Tobacco Use", + "H36", "pct_current_vape", "Currently used vapor products", "Currently used electronic vapor products", "Tobacco Use", + "H38", "pct_current_smokeless_tobacco","Currently used smokeless tobacco", "Currently used smokeless tobacco", "Tobacco Use", + # ---- Alcohol and Other Drug Use (category: chronic) ---- + "H42", "pct_current_alcohol", "Currently drank alcohol", "Currently drank alcohol", "Alcohol and Other Drug Use", + "H43", "pct_binge_drinking", "Currently binge drinking", "Currently were binge drinking", "Alcohol and Other Drug Use", + "H46", "pct_ever_marijuana", "Ever used marijuana", "Ever used marijuana", "Alcohol and Other Drug Use", + "H47", "pct_early_marijuana", "Tried marijuana before age 13", "Tried marijuana for the first time before age 13 years", "Alcohol and Other Drug Use", + "H48", "pct_current_marijuana", "Currently used marijuana", "Currently used marijuana", "Alcohol and Other Drug Use", + "H49", "pct_ever_rx_opioid_misuse", "Ever misused Rx opioids", "Ever took prescription pain medicine without a doctor's prescription or differently than how a doctor told them to use it","Alcohol and Other Drug Use", + "QNCURRENTOPIOID", "pct_current_rx_opioid_misuse", "Currently misused Rx opioids", "Currently took prescription pain medicine without a doctor's prescription or differently than how a doctor told them to use it","Alcohol and Other Drug Use", + "H50", "pct_ever_cocaine", "Ever used cocaine", "Ever used cocaine", "Alcohol and Other Drug Use", + "H51", "pct_ever_inhalants", "Ever used inhalants", "Ever used inhalants", "Alcohol and Other Drug Use", + "H52", "pct_ever_heroin", "Ever used heroin", "Ever used heroin", "Alcohol and Other Drug Use", + "H53", "pct_ever_methamphetamines", "Ever used methamphetamines", "Ever used methamphetamines", "Alcohol and Other Drug Use", + "H54", "pct_ever_ecstasy", "Ever used ecstasy", "Ever used ecstasy", "Alcohol and Other Drug Use", + "QNHALLUCDRUG", "pct_ever_hallucinogens", "Ever used hallucinogens", "Ever used hallucinogenic drugs", "Alcohol and Other Drug Use", + "H55", "pct_ever_inject_drug", "Ever injected illegal drug", "Ever injected any illegal drug", "Alcohol and Other Drug Use", + "QNILLICT", "pct_ever_illicit_drug", "Ever used select illicit drugs", "Ever used select illicit drugs", "Alcohol and Other Drug Use", + # ---- Dietary Behaviors (category: chronic) ---- + "H75", "pct_no_breakfast", "Did not eat breakfast", "Did not eat breakfast (during the 7 days before the survey)", "Dietary Behaviors", + "QNBK7DAY", "pct_no_breakfast_7days", "No breakfast on all 7 days", "Did not eat breakfast on all 7 days (before the survey)", "Dietary Behaviors", + "QNFR0", "pct_no_fruit", "Did not eat fruit", "Did not eat fruit or drink 100% fruit juices (during the 7 days before the survey)", "Dietary Behaviors", + "QNVEG0", "pct_no_vegetables", "Did not eat vegetables", "Did not eat vegetables (during the 7 days before the survey)", "Dietary Behaviors", + # ---- Physical Activity (category: chronic) ---- + "H76", "pct_inactive_60min_5days", "Inactive <5 days/wk", "Were not physically active at least 60 minutes per day on 5 or more days", "Physical Activity", + "H77", "pct_no_pe_classes", "Did not attend PE classes", "Did not attend physical education (PE) classes on 1 or more days", "Physical Activity", + "H78", "pct_no_sports_team", "Did not play on a sports team", "Did not play on at least one sports team", "Physical Activity", + "H79", "pct_sports_concussion", "Concussion from sport/activity", "Had a concussion from playing a sport or being physically active", "Physical Activity", + "QNDLYPE", "pct_no_daily_pe", "No daily PE", "Did not attend physical education (PE) classes on all 5 days", "Physical Activity", + "QNMUSCLESTRENGTH", "pct_no_muscle_strengthening", "No muscle strengthening", "Did not do exercises to strengthen or tone muscles on three or more days", "Physical Activity", + "QNPA0DAY", "pct_inactive_all_days", "Inactive every day", "Were not physically active for at least 60 minutes on at least 1 day", "Physical Activity", + "QNPA7DAY", "pct_inactive_60min_7days", "Inactive <7 days/wk", "Were not physically active at least 60 minutes per day on all 7 days", "Physical Activity", + # ---- Other Health Topics (category: chronic) ---- + "H80", "pct_social_media_daily", "Used social media several/day", "Used social media at least several times a day", "Other Health Topics", + "H84", "pct_poor_mental_health", "Poor mental health", "Reported that their mental health was most of the time or always not good", "Other Health Topics", + "H85", "pct_insufficient_sleep", "Insufficient sleep (<8 hrs)", "Did not get 8 or more hours of sleep (on an average school night)", "Other Health Topics", + "H86", "pct_unstable_housing", "Experienced unstable housing", "Experienced unstable housing", "Other Health Topics", + "QNCLOSE2PEOPLE", "pct_not_close_at_school", "Did not feel close at school", "Strongly disagreed or disagreed that they feel close to people at their school", "Other Health Topics" +) + +# ----------------------------------------------------------------------------- +# Initialize process record (creates process.json if it doesn't exist) +# ----------------------------------------------------------------------------- +if (!file.exists("process.json")) { + process <- list(raw_state = NULL) +} else { + process <- dcf::dcf_process_record() +} + +# Small wrapper: fetch a URL as parsed JSON, retrying once on failure. +fetch_json <- function(url) { + for (attempt in 1:2) { + res <- tryCatch(jsonlite::fromJSON(url, simplifyVector = TRUE), + error = function(e) NULL) + if (!is.null(res)) return(res) + Sys.sleep(0.5) + } + NULL +} + +# ----------------------------------------------------------------------------- +# 1. Survey years and question catalog +# ----------------------------------------------------------------------------- +years_resp <- fetch_json(paste0(BASE, "/Years/2")) +year_vec <- as.integer(unlist(years_resp$Years)) +year_vec <- sort(year_vec) +list_years <- paste(year_vec, collapse = ",") + +cat_raw <- jsonlite::fromJSON( + paste0(BASE, "/Questions?SurveyId=2&ListOfYears=", list_years, + "&ListOfLocations=XX"), + simplifyVector = FALSE +) +topics <- cat_raw[[1]]$Topics + +catalog <- purrr::map_dfr(topics, function(tp) { + purrr::map_dfr(tp$TopicQuestions, function(q) { + tibble( + topic_code = tp$TopicCode, + topic_text = tp$TopicText, + question_code = q$QuestionCode, + question_text = q$GreaterRiskQuestionText + ) + }) +}) + +# Select the questions in scope +selected <- catalog %>% + filter(topic_code %in% FULL_TOPICS | question_code %in% SELECT_CODES) %>% + distinct(question_code, .keep_all = TRUE) + +# ----------------------------------------------------------------------------- +# 2. Target locations: National (XX) + states + DC +# ----------------------------------------------------------------------------- +loc_raw <- fetch_json(paste0(BASE, "/YrbsExplorerLocations")) +locations <- loc_raw %>% + as_tibble() %>% + filter(LocationType == "State" | + LocationDescription == "District of Columbia" | + LocationCode == "XX") %>% + mutate( + # Map each location to the name used in resources/all_fips.csv.gz + fips_name = case_when( + LocationCode == "XX" ~ "United States", + LocationCode == "NYA" ~ "New York", # YRBSS NY excludes NYC (see caveat) + TRUE ~ LocationDescription + ) + ) + +# ----------------------------------------------------------------------------- +# 3. Download ChartData for every question x location (all years at once) +# ----------------------------------------------------------------------------- +sig <- list(years = year_vec, questions = sort(selected$question_code)) + +if (!identical(process$raw_state$sig, sig) || !file.exists(RAW_FILE)) { + + message(sprintf("Downloading YRBSS ChartData: %d questions x %d locations", + nrow(selected), nrow(locations))) + + grid <- tidyr::expand_grid( + question_code = selected$question_code, + LocationCode = locations$LocationCode + ) + grid$url <- sprintf("%s/ChartData?QuestionId=%s&LocationId=%s&Yr=9999", + BASE, grid$question_code, grid$LocationCode) + n_req <- nrow(grid) + + # Parallel fetch via a PSOCK cluster: each worker independently issues plain + # sequential HTTPS requests (one connection at a time per worker). This is + # far more robust against this server than curl's shared multiplex pool. + + # Progress instrumentation: each worker drops a marker file per completed + # request, so live progress can be read by counting files in PROG_DIR. + PROG_DIR <- "raw/.prog" + unlink(PROG_DIR, recursive = TRUE) + dir.create(PROG_DIR, showWarnings = FALSE, recursive = TRUE) + + pull_one <- function(i) { + url <- grid$url[i] + d <- NULL + for (attempt in 1:3) { + # Bounded timeout so a hung connection can't stall a worker for 60s + d <- tryCatch( + jsonlite::fromJSON(curl::curl(url, handle = curl::new_handle( + timeout = 25, connecttimeout = 10)), simplifyVector = TRUE), + error = function(e) NULL + ) + if (!is.null(d)) break + Sys.sleep(0.3) + } + file.create(file.path(PROG_DIR, as.character(i))) # progress marker + if (is.null(d) || length(d) == 0 || !is.data.frame(d) || nrow(d) == 0) + return(NULL) + # Keep only the strata in scope (Total, Sex, Race, Grade); drop the + # sexual-identity / transgender / sex-of-sexual-contacts strata at the + # scrape stage so they never enter the raw file. + d <- d[d$StratType %in% c("Total", "Sex", "Race", "Grade"), , drop = FALSE] + if (nrow(d) == 0) return(NULL) + d$question_code <- grid$question_code[i] + d$LocationCode <- grid$LocationCode[i] + d + } + + n_workers <- 8 + message(sprintf("Fetching %d requests across %d workers (load-balanced)...", + n_req, n_workers)) + cl <- makeCluster(n_workers) + on.exit(stopCluster(cl), add = TRUE) + clusterEvalQ(cl, { library(jsonlite); library(curl) }) + clusterExport(cl, c("grid", "PROG_DIR"), envir = environment()) + # Load-balanced, one request per dispatch: idle workers immediately pull the + # next request, so a few slow responses never stall the whole job. + results <- parLapplyLB(cl, seq_len(n_req), pull_one, chunk.size = 1) + stopCluster(cl) + unlink(PROG_DIR, recursive = TRUE) # clean up progress markers + + n_ok <- sum(!vapply(results, is.null, logical(1))) + message(sprintf("Got data for %d / %d question-location pairs", n_ok, n_req)) + + raw_all <- bind_rows(results) + vroom::vroom_write(raw_all, RAW_FILE, delim = ",") + message(sprintf("Saved %d raw rows to %s", nrow(raw_all), RAW_FILE)) +} else { + message("Raw signature unchanged; reusing cached ", RAW_FILE) + raw_all <- vroom::vroom(RAW_FILE, show_col_types = FALSE, + col_types = vroom::cols(.default = "c")) +} + +# ----------------------------------------------------------------------------- +# 4. FIPS + stratum mapping helpers +# ----------------------------------------------------------------------------- +all_fips <- vroom::vroom("../../resources/all_fips.csv.gz", show_col_types = FALSE) + +all_fips_state <- all_fips %>% + filter(geography_name %in% c("United States", "District of Columbia", state.name)) %>% + filter(geography != "11001") %>% + select(geography, geography_name) + +loc_fips <- locations %>% + left_join(all_fips_state, by = c("fips_name" = "geography_name")) %>% + select(LocationCode, geography) + +recode_race <- function(x) { + dplyr::recode(x, + "Black or African American" = "Black", + "Hispanic or Latino" = "Hispanic", + "American Indian or Alaska Native" = "AI/AN", + "Native Hawaiian or Other Pacific Islander" = "NH/PI", + "Multiple race" = "Multiple", + .default = x + ) +} + +# Approximate modal age for US grade levels (documented in measure_info.json) +grade_to_age <- function(x) { + dplyr::recode(x, + "9th" = "14", "10th" = "15", "11th" = "16", "12th" = "17", + .default = x + ) +} + +# ----------------------------------------------------------------------------- +# 5. Build a tidy long table (one row per geography x time x stratum x measure). +# Suppressed estimates (CDC emits a row with an empty MainValue) are KEPT +# here as value = NA so they can be distinguished from questions that were +# never asked (no row at all). topic / question_code are documented only in +# measure_info.json and are NOT written to the data files. +# ----------------------------------------------------------------------------- +raw_clean <- raw_all %>% + filter(StratType %in% c("Total", "Sex", "Race", "Grade")) %>% + mutate( + Year = suppressWarnings(as.integer(Year)), + value = suppressWarnings(as.numeric(na_if(trimws(as.character(MainValue)), ""))), + value_lcl = suppressWarnings(as.numeric(na_if(trimws(as.character(LowCI)), ""))), + value_ucl = suppressWarnings(as.numeric(na_if(trimws(as.character(HighCI)), ""))) + ) %>% + filter(Year >= MIN_YEAR) %>% + left_join(loc_fips, by = "LocationCode") %>% + filter(!is.na(geography)) %>% + inner_join(select(measure_dict, question_code, slug), by = "question_code") %>% + mutate( + sex = if_else(StratType == "Sex", Strat, "Overall"), + race_ethnicity = if_else(StratType == "Race", recode_race(Strat), "Overall"), + age = if_else(StratType == "Grade", grade_to_age(Strat), "Overall"), + time = paste0(Year, "-12-31") + ) %>% + select(geography, time, age, sex, race_ethnicity, + slug, value, value_lcl, value_ucl) + +# A question was "asked" for a given geography + year if it appears in the raw +# data for that geography and year at all (in any stratum). Anything else is +# "not asked" (the question was not part of that jurisdiction's survey). +asked_set <- raw_clean %>% + distinct(geography, time, slug) %>% + mutate(asked = TRUE) + +# Build the full set of cells for one stratification dimension: the cross of +# every observed key-row with every measure, annotated with value / CI / flags. +# suppressed = 1 -> question asked but CDC suppressed this estimate (value 0) +# not_asked = 1 -> question not asked for this geography & year (value 0) +# All missing value / _lcl / _ucl entries are set to 0. +build_cells <- function(sub, key_cols) { + key_rows <- sub %>% distinct(across(all_of(key_cols))) + tidyr::expand_grid(key_rows, slug = measure_dict$slug) %>% + left_join( + sub %>% select(all_of(key_cols), slug, value, value_lcl, value_ucl), + by = c(key_cols, "slug") + ) %>% + left_join(asked_set, by = c("geography", "time", "slug")) %>% + mutate( + asked = coalesce(asked, FALSE), + not_asked = if_else(asked, 0L, 1L), + suppressed = if_else(asked & is.na(value), 1L, 0L), + value = coalesce(value, 0), + value_lcl = coalesce(value_lcl, 0), + value_ucl = coalesce(value_ucl, 0) + ) %>% + select(all_of(key_cols), slug, value, value_lcl, value_ucl, + suppressed, not_asked) +} + +# Reshape cells to wide: each measure becomes the columns , _lcl, +# _ucl, _suppressed, _not_asked (in that order), keyed by the +# supplied id columns. +col_order <- as.vector(t(outer( + measure_dict$slug, + c("", "_lcl", "_ucl", "_suppressed", "_not_asked"), + paste0 +))) + +make_wide <- function(cells, id_cols) { + cells %>% + tidyr::pivot_longer(c(value, value_lcl, value_ucl, suppressed, not_asked), + names_to = "stat", values_to = "val") %>% + mutate(variable = case_when( + stat == "value" ~ slug, + stat == "value_lcl" ~ paste0(slug, "_lcl"), + stat == "value_ucl" ~ paste0(slug, "_ucl"), + stat == "suppressed" ~ paste0(slug, "_suppressed"), + stat == "not_asked" ~ paste0(slug, "_not_asked") + )) %>% + mutate(variable = factor(variable, levels = col_order)) %>% + select(all_of(id_cols), variable, val) %>% + tidyr::pivot_wider(names_from = variable, values_from = val) %>% + arrange(across(all_of(id_cols))) +} + +# data_age: age stratification only (sex & race held at Overall) +data_age <- raw_clean %>% + filter(sex == "Overall", race_ethnicity == "Overall") %>% + build_cells(c("geography", "time", "age")) %>% + make_wide(c("geography", "time", "age")) + +# data_age_sex: age and sex stratifications (race held at Overall) +data_age_sex <- raw_clean %>% + filter(race_ethnicity == "Overall") %>% + build_cells(c("geography", "time", "age", "sex")) %>% + make_wide(c("geography", "time", "age", "sex")) + +# data_age_ethnicity: age and race/ethnicity stratifications (sex held Overall) +data_age_ethnicity <- raw_clean %>% + filter(sex == "Overall") %>% + build_cells(c("geography", "time", "age", "race_ethnicity")) %>% + make_wide(c("geography", "time", "age", "race_ethnicity")) + +vroom::vroom_write(data_age, "standard/data_age.csv.gz", delim = ",") +vroom::vroom_write(data_age_sex, "standard/data_age_sex.csv.gz", delim = ",") +vroom::vroom_write(data_age_ethnicity, "standard/data_age_ethnicity.csv.gz", delim = ",") + +message(sprintf( + "Wrote standard files: data_age (%d rows), data_age_sex (%d rows), data_age_ethnicity (%d rows); %d measures across %d geographies", + nrow(data_age), nrow(data_age_sex), nrow(data_age_ethnicity), + dplyr::n_distinct(raw_clean$slug), dplyr::n_distinct(raw_clean$geography))) + +# ----------------------------------------------------------------------------- +# 6. Generate measure_info.json. One entry per measure (value + _lcl + _ucl). +# topic and question_code, dropped from the data files, are documented here. +# ----------------------------------------------------------------------------- +measures <- measure_dict %>% + filter(slug %in% unique(raw_clean$slug)) %>% + arrange(topic, question_code) + +lc_first <- function(s) paste0(tolower(substr(s, 1, 1)), substring(s, 2)) + +measure_entries <- list() +for (i in seq_len(nrow(measures))) { + m <- measures[i, ] + category <- if (m$topic == "Unintentional Injuries and Violence") "injury" else "chronic" + base_long_desc <- paste0( + "Weighted percentage of U.S. high school students who ", lc_first(m$question_text), + ", from the CDC Youth Risk Behavior Surveillance System (YRBSS) ", + "(topic: ", m$topic, "; YRBSS question code: ", m$question_code, "). ", + "Estimates are reported overall and stratified (separately) by sex, ", + "race/ethnicity, and grade; grade is mapped to approximate modal ages ", + "(9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and ", + "flagged: ", m$slug, "_suppressed = 1 marks values CDC suppressed (e.g., ", + "small sample size), and ", m$slug, "_not_asked = 1 marks geography-years ", + "in which the question was not asked. ", + "Note: New York state estimates exclude New York City." + ) + + # Main value + measure_entries[[m$slug]] <- list( + id = m$slug, + short_name = m$short_label, + long_name = paste0("YRBSS: ", m$question_text, " (", m$topic, ")"), + category = category, + topic = m$topic, + question_code = m$question_code, + short_description = paste0("Percent of high school students who ", + lc_first(m$question_text), "."), + long_description = base_long_desc, + measure_type = "Percent", + unit = "Percent", + time_resolution = "Year", + sources = list(list(id = "yrbss")) + ) + # Lower 95% CI + measure_entries[[paste0(m$slug, "_lcl")]] <- list( + id = paste0(m$slug, "_lcl"), + short_name = paste0(m$short_label, " - lower 95% CI"), + long_name = paste0("YRBSS: ", m$question_text, + " - lower bound of 95% confidence interval"), + category = category, + topic = m$topic, + question_code = m$question_code, + short_description = paste0("Lower bound of the 95% confidence interval for the percent of high school students who ", + lc_first(m$question_text), "."), + long_description = paste0("Lower bound of the 95% confidence interval for ", m$slug, ". ", + base_long_desc), + measure_type = "Percent", + unit = "Percent", + time_resolution = "Year", + sources = list(list(id = "yrbss")) + ) + # Upper 95% CI + measure_entries[[paste0(m$slug, "_ucl")]] <- list( + id = paste0(m$slug, "_ucl"), + short_name = paste0(m$short_label, " - upper 95% CI"), + long_name = paste0("YRBSS: ", m$question_text, + " - upper bound of 95% confidence interval"), + category = category, + topic = m$topic, + question_code = m$question_code, + short_description = paste0("Upper bound of the 95% confidence interval for the percent of high school students who ", + lc_first(m$question_text), "."), + long_description = paste0("Upper bound of the 95% confidence interval for ", m$slug, ". ", + base_long_desc), + measure_type = "Percent", + unit = "Percent", + time_resolution = "Year", + sources = list(list(id = "yrbss")) + ) + # Suppressed flag + measure_entries[[paste0(m$slug, "_suppressed")]] <- list( + id = paste0(m$slug, "_suppressed"), + short_name = paste0(m$short_label, " - suppressed flag"), + long_name = paste0("YRBSS: ", m$question_text, " - suppressed flag"), + category = category, + topic = m$topic, + question_code = m$question_code, + short_description = paste0("1 if the estimate for '", m$slug, + "' was suppressed by CDC and set to 0; 0 otherwise."), + long_description = paste0( + "Flag indicating CDC suppression. 1 means the question was asked for this ", + "geography and year but CDC suppressed the estimate (e.g., insufficient ", + "sample size), and ", m$slug, " (with its CI) was set to 0; 0 otherwise. ", + "Distinct from ", m$slug, "_not_asked, which marks geography-years where ", + "the question was not asked at all." + ), + measure_type = "Indicator", + unit = "0/1 flag", + time_resolution = "Year", + sources = list(list(id = "yrbss")) + ) + # Not-asked flag + measure_entries[[paste0(m$slug, "_not_asked")]] <- list( + id = paste0(m$slug, "_not_asked"), + short_name = paste0(m$short_label, " - not-asked flag"), + long_name = paste0("YRBSS: ", m$question_text, " - not-asked flag"), + category = category, + topic = m$topic, + question_code = m$question_code, + short_description = paste0("1 if '", m$slug, + "' was not asked for this geography and year and set to 0; 0 otherwise."), + long_description = paste0( + "Flag indicating the question was not asked. 1 means '", m$question_text, + "' was not part of the YRBSS survey for this geography and year, so ", m$slug, + " (with its CI) was set to 0; 0 otherwise. Distinct from ", m$slug, + "_suppressed, which marks estimates CDC suppressed." + ), + measure_type = "Indicator", + unit = "0/1 flag", + time_resolution = "Year", + sources = list(list(id = "yrbss")) + ) +} + +measure_info <- measure_entries +measure_info[["_sources"]] <- list( + yrbss = list( + name = "CDC Youth Risk Behavior Surveillance System (YRBSS)", + url = "https://yrbs-explorer.services.cdc.gov/", + date_accessed = 2025, + organization = "Centers for Disease Control and Prevention", + organization_url = "https://www.cdc.gov/yrbs/", + description = paste0( + "The Youth Risk Behavior Surveillance System (YRBSS) is a set of ", + "school-based surveys conducted by the CDC that monitor health-related ", + "behaviors among U.S. high school students. The biennial national, ", + "state, and local surveys provide weighted prevalence estimates of ", + "behaviors contributing to the leading causes of death and disability. ", + "Data were accessed via the YRBS Explorer API. Estimates are provided ", + "overall and stratified (separately, not crossed) by sex, race/ethnicity, ", + "and grade. Estimates that CDC suppressed (e.g., small sample sizes) are ", + "omitted rather than imputed. State estimates are available only for ", + "jurisdictions that share data with CDC; Minnesota, Oregon, and ", + "Washington are not included, and New York state excludes New York City." + ), + restrictions = "Public domain. Suggested attribution: Centers for Disease Control and Prevention (CDC). Youth Risk Behavior Surveillance System (YRBSS)." + ) +) + +jsonlite::write_json(measure_info, "measure_info.json", + pretty = TRUE, auto_unbox = TRUE, null = "null") + +# ----------------------------------------------------------------------------- +# 7. Update process record +# ----------------------------------------------------------------------------- +process$raw_state <- list(sig = sig, hash = unname(tools::md5sum(RAW_FILE))) +dcf::dcf_process_record(updated = process) diff --git a/data/yrbss/measure_info.json b/data/yrbss/measure_info.json new file mode 100644 index 00000000..0580984d --- /dev/null +++ b/data/yrbss/measure_info.json @@ -0,0 +1,4603 @@ +{ + "pct_current_alcohol": { + "id": "pct_current_alcohol", + "short_name": "Currently drank alcohol", + "long_name": "YRBSS: Currently drank alcohol (Alcohol and Other Drug Use)", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H42", + "short_description": "Percent of high school students who currently drank alcohol.", + "long_description": "Weighted percentage of U.S. high school students who currently drank alcohol, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Alcohol and Other Drug Use; YRBSS question code: H42). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_current_alcohol_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_current_alcohol_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_current_alcohol_lcl": { + "id": "pct_current_alcohol_lcl", + "short_name": "Currently drank alcohol - lower 95% CI", + "long_name": "YRBSS: Currently drank alcohol - lower bound of 95% confidence interval", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H42", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who currently drank alcohol.", + "long_description": "Lower bound of the 95% confidence interval for pct_current_alcohol. Weighted percentage of U.S. high school students who currently drank alcohol, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Alcohol and Other Drug Use; YRBSS question code: H42). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_current_alcohol_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_current_alcohol_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_current_alcohol_ucl": { + "id": "pct_current_alcohol_ucl", + "short_name": "Currently drank alcohol - upper 95% CI", + "long_name": "YRBSS: Currently drank alcohol - upper bound of 95% confidence interval", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H42", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who currently drank alcohol.", + "long_description": "Upper bound of the 95% confidence interval for pct_current_alcohol. Weighted percentage of U.S. high school students who currently drank alcohol, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Alcohol and Other Drug Use; YRBSS question code: H42). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_current_alcohol_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_current_alcohol_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_current_alcohol_suppressed": { + "id": "pct_current_alcohol_suppressed", + "short_name": "Currently drank alcohol - suppressed flag", + "long_name": "YRBSS: Currently drank alcohol - suppressed flag", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H42", + "short_description": "1 if the estimate for 'pct_current_alcohol' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_current_alcohol (with its CI) was set to 0; 0 otherwise. Distinct from pct_current_alcohol_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_current_alcohol_not_asked": { + "id": "pct_current_alcohol_not_asked", + "short_name": "Currently drank alcohol - not-asked flag", + "long_name": "YRBSS: Currently drank alcohol - not-asked flag", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H42", + "short_description": "1 if 'pct_current_alcohol' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Currently drank alcohol' was not part of the YRBSS survey for this geography and year, so pct_current_alcohol (with its CI) was set to 0; 0 otherwise. Distinct from pct_current_alcohol_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_binge_drinking": { + "id": "pct_binge_drinking", + "short_name": "Currently binge drinking", + "long_name": "YRBSS: Currently were binge drinking (Alcohol and Other Drug Use)", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H43", + "short_description": "Percent of high school students who currently were binge drinking.", + "long_description": "Weighted percentage of U.S. high school students who currently were binge drinking, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Alcohol and Other Drug Use; YRBSS question code: H43). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_binge_drinking_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_binge_drinking_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_binge_drinking_lcl": { + "id": "pct_binge_drinking_lcl", + "short_name": "Currently binge drinking - lower 95% CI", + "long_name": "YRBSS: Currently were binge drinking - lower bound of 95% confidence interval", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H43", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who currently were binge drinking.", + "long_description": "Lower bound of the 95% confidence interval for pct_binge_drinking. Weighted percentage of U.S. high school students who currently were binge drinking, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Alcohol and Other Drug Use; YRBSS question code: H43). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_binge_drinking_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_binge_drinking_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_binge_drinking_ucl": { + "id": "pct_binge_drinking_ucl", + "short_name": "Currently binge drinking - upper 95% CI", + "long_name": "YRBSS: Currently were binge drinking - upper bound of 95% confidence interval", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H43", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who currently were binge drinking.", + "long_description": "Upper bound of the 95% confidence interval for pct_binge_drinking. Weighted percentage of U.S. high school students who currently were binge drinking, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Alcohol and Other Drug Use; YRBSS question code: H43). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_binge_drinking_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_binge_drinking_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_binge_drinking_suppressed": { + "id": "pct_binge_drinking_suppressed", + "short_name": "Currently binge drinking - suppressed flag", + "long_name": "YRBSS: Currently were binge drinking - suppressed flag", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H43", + "short_description": "1 if the estimate for 'pct_binge_drinking' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_binge_drinking (with its CI) was set to 0; 0 otherwise. Distinct from pct_binge_drinking_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_binge_drinking_not_asked": { + "id": "pct_binge_drinking_not_asked", + "short_name": "Currently binge drinking - not-asked flag", + "long_name": "YRBSS: Currently were binge drinking - not-asked flag", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H43", + "short_description": "1 if 'pct_binge_drinking' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Currently were binge drinking' was not part of the YRBSS survey for this geography and year, so pct_binge_drinking (with its CI) was set to 0; 0 otherwise. Distinct from pct_binge_drinking_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_marijuana": { + "id": "pct_ever_marijuana", + "short_name": "Ever used marijuana", + "long_name": "YRBSS: Ever used marijuana (Alcohol and Other Drug Use)", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H46", + "short_description": "Percent of high school students who ever used marijuana.", + "long_description": "Weighted percentage of U.S. high school students who ever used marijuana, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Alcohol and Other Drug Use; YRBSS question code: H46). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_ever_marijuana_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_ever_marijuana_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_marijuana_lcl": { + "id": "pct_ever_marijuana_lcl", + "short_name": "Ever used marijuana - lower 95% CI", + "long_name": "YRBSS: Ever used marijuana - lower bound of 95% confidence interval", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H46", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who ever used marijuana.", + "long_description": "Lower bound of the 95% confidence interval for pct_ever_marijuana. Weighted percentage of U.S. high school students who ever used marijuana, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Alcohol and Other Drug Use; YRBSS question code: H46). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_ever_marijuana_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_ever_marijuana_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_marijuana_ucl": { + "id": "pct_ever_marijuana_ucl", + "short_name": "Ever used marijuana - upper 95% CI", + "long_name": "YRBSS: Ever used marijuana - upper bound of 95% confidence interval", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H46", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who ever used marijuana.", + "long_description": "Upper bound of the 95% confidence interval for pct_ever_marijuana. Weighted percentage of U.S. high school students who ever used marijuana, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Alcohol and Other Drug Use; YRBSS question code: H46). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_ever_marijuana_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_ever_marijuana_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_marijuana_suppressed": { + "id": "pct_ever_marijuana_suppressed", + "short_name": "Ever used marijuana - suppressed flag", + "long_name": "YRBSS: Ever used marijuana - suppressed flag", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H46", + "short_description": "1 if the estimate for 'pct_ever_marijuana' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_ever_marijuana (with its CI) was set to 0; 0 otherwise. Distinct from pct_ever_marijuana_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_marijuana_not_asked": { + "id": "pct_ever_marijuana_not_asked", + "short_name": "Ever used marijuana - not-asked flag", + "long_name": "YRBSS: Ever used marijuana - not-asked flag", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H46", + "short_description": "1 if 'pct_ever_marijuana' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Ever used marijuana' was not part of the YRBSS survey for this geography and year, so pct_ever_marijuana (with its CI) was set to 0; 0 otherwise. Distinct from pct_ever_marijuana_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_early_marijuana": { + "id": "pct_early_marijuana", + "short_name": "Tried marijuana before age 13", + "long_name": "YRBSS: Tried marijuana for the first time before age 13 years (Alcohol and Other Drug Use)", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H47", + "short_description": "Percent of high school students who tried marijuana for the first time before age 13 years.", + "long_description": "Weighted percentage of U.S. high school students who tried marijuana for the first time before age 13 years, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Alcohol and Other Drug Use; YRBSS question code: H47). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_early_marijuana_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_early_marijuana_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_early_marijuana_lcl": { + "id": "pct_early_marijuana_lcl", + "short_name": "Tried marijuana before age 13 - lower 95% CI", + "long_name": "YRBSS: Tried marijuana for the first time before age 13 years - lower bound of 95% confidence interval", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H47", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who tried marijuana for the first time before age 13 years.", + "long_description": "Lower bound of the 95% confidence interval for pct_early_marijuana. Weighted percentage of U.S. high school students who tried marijuana for the first time before age 13 years, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Alcohol and Other Drug Use; YRBSS question code: H47). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_early_marijuana_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_early_marijuana_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_early_marijuana_ucl": { + "id": "pct_early_marijuana_ucl", + "short_name": "Tried marijuana before age 13 - upper 95% CI", + "long_name": "YRBSS: Tried marijuana for the first time before age 13 years - upper bound of 95% confidence interval", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H47", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who tried marijuana for the first time before age 13 years.", + "long_description": "Upper bound of the 95% confidence interval for pct_early_marijuana. Weighted percentage of U.S. high school students who tried marijuana for the first time before age 13 years, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Alcohol and Other Drug Use; YRBSS question code: H47). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_early_marijuana_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_early_marijuana_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_early_marijuana_suppressed": { + "id": "pct_early_marijuana_suppressed", + "short_name": "Tried marijuana before age 13 - suppressed flag", + "long_name": "YRBSS: Tried marijuana for the first time before age 13 years - suppressed flag", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H47", + "short_description": "1 if the estimate for 'pct_early_marijuana' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_early_marijuana (with its CI) was set to 0; 0 otherwise. Distinct from pct_early_marijuana_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_early_marijuana_not_asked": { + "id": "pct_early_marijuana_not_asked", + "short_name": "Tried marijuana before age 13 - not-asked flag", + "long_name": "YRBSS: Tried marijuana for the first time before age 13 years - not-asked flag", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H47", + "short_description": "1 if 'pct_early_marijuana' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Tried marijuana for the first time before age 13 years' was not part of the YRBSS survey for this geography and year, so pct_early_marijuana (with its CI) was set to 0; 0 otherwise. Distinct from pct_early_marijuana_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_current_marijuana": { + "id": "pct_current_marijuana", + "short_name": "Currently used marijuana", + "long_name": "YRBSS: Currently used marijuana (Alcohol and Other Drug Use)", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H48", + "short_description": "Percent of high school students who currently used marijuana.", + "long_description": "Weighted percentage of U.S. high school students who currently used marijuana, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Alcohol and Other Drug Use; YRBSS question code: H48). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_current_marijuana_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_current_marijuana_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_current_marijuana_lcl": { + "id": "pct_current_marijuana_lcl", + "short_name": "Currently used marijuana - lower 95% CI", + "long_name": "YRBSS: Currently used marijuana - lower bound of 95% confidence interval", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H48", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who currently used marijuana.", + "long_description": "Lower bound of the 95% confidence interval for pct_current_marijuana. Weighted percentage of U.S. high school students who currently used marijuana, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Alcohol and Other Drug Use; YRBSS question code: H48). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_current_marijuana_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_current_marijuana_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_current_marijuana_ucl": { + "id": "pct_current_marijuana_ucl", + "short_name": "Currently used marijuana - upper 95% CI", + "long_name": "YRBSS: Currently used marijuana - upper bound of 95% confidence interval", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H48", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who currently used marijuana.", + "long_description": "Upper bound of the 95% confidence interval for pct_current_marijuana. Weighted percentage of U.S. high school students who currently used marijuana, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Alcohol and Other Drug Use; YRBSS question code: H48). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_current_marijuana_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_current_marijuana_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_current_marijuana_suppressed": { + "id": "pct_current_marijuana_suppressed", + "short_name": "Currently used marijuana - suppressed flag", + "long_name": "YRBSS: Currently used marijuana - suppressed flag", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H48", + "short_description": "1 if the estimate for 'pct_current_marijuana' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_current_marijuana (with its CI) was set to 0; 0 otherwise. Distinct from pct_current_marijuana_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_current_marijuana_not_asked": { + "id": "pct_current_marijuana_not_asked", + "short_name": "Currently used marijuana - not-asked flag", + "long_name": "YRBSS: Currently used marijuana - not-asked flag", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H48", + "short_description": "1 if 'pct_current_marijuana' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Currently used marijuana' was not part of the YRBSS survey for this geography and year, so pct_current_marijuana (with its CI) was set to 0; 0 otherwise. Distinct from pct_current_marijuana_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_rx_opioid_misuse": { + "id": "pct_ever_rx_opioid_misuse", + "short_name": "Ever misused Rx opioids", + "long_name": "YRBSS: Ever took prescription pain medicine without a doctor's prescription or differently than how a doctor told them to use it (Alcohol and Other Drug Use)", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H49", + "short_description": "Percent of high school students who ever took prescription pain medicine without a doctor's prescription or differently than how a doctor told them to use it.", + "long_description": "Weighted percentage of U.S. high school students who ever took prescription pain medicine without a doctor's prescription or differently than how a doctor told them to use it, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Alcohol and Other Drug Use; YRBSS question code: H49). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_ever_rx_opioid_misuse_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_ever_rx_opioid_misuse_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_rx_opioid_misuse_lcl": { + "id": "pct_ever_rx_opioid_misuse_lcl", + "short_name": "Ever misused Rx opioids - lower 95% CI", + "long_name": "YRBSS: Ever took prescription pain medicine without a doctor's prescription or differently than how a doctor told them to use it - lower bound of 95% confidence interval", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H49", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who ever took prescription pain medicine without a doctor's prescription or differently than how a doctor told them to use it.", + "long_description": "Lower bound of the 95% confidence interval for pct_ever_rx_opioid_misuse. Weighted percentage of U.S. high school students who ever took prescription pain medicine without a doctor's prescription or differently than how a doctor told them to use it, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Alcohol and Other Drug Use; YRBSS question code: H49). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_ever_rx_opioid_misuse_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_ever_rx_opioid_misuse_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_rx_opioid_misuse_ucl": { + "id": "pct_ever_rx_opioid_misuse_ucl", + "short_name": "Ever misused Rx opioids - upper 95% CI", + "long_name": "YRBSS: Ever took prescription pain medicine without a doctor's prescription or differently than how a doctor told them to use it - upper bound of 95% confidence interval", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H49", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who ever took prescription pain medicine without a doctor's prescription or differently than how a doctor told them to use it.", + "long_description": "Upper bound of the 95% confidence interval for pct_ever_rx_opioid_misuse. Weighted percentage of U.S. high school students who ever took prescription pain medicine without a doctor's prescription or differently than how a doctor told them to use it, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Alcohol and Other Drug Use; YRBSS question code: H49). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_ever_rx_opioid_misuse_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_ever_rx_opioid_misuse_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_rx_opioid_misuse_suppressed": { + "id": "pct_ever_rx_opioid_misuse_suppressed", + "short_name": "Ever misused Rx opioids - suppressed flag", + "long_name": "YRBSS: Ever took prescription pain medicine without a doctor's prescription or differently than how a doctor told them to use it - suppressed flag", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H49", + "short_description": "1 if the estimate for 'pct_ever_rx_opioid_misuse' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_ever_rx_opioid_misuse (with its CI) was set to 0; 0 otherwise. Distinct from pct_ever_rx_opioid_misuse_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_rx_opioid_misuse_not_asked": { + "id": "pct_ever_rx_opioid_misuse_not_asked", + "short_name": "Ever misused Rx opioids - not-asked flag", + "long_name": "YRBSS: Ever took prescription pain medicine without a doctor's prescription or differently than how a doctor told them to use it - not-asked flag", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H49", + "short_description": "1 if 'pct_ever_rx_opioid_misuse' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Ever took prescription pain medicine without a doctor's prescription or differently than how a doctor told them to use it' was not part of the YRBSS survey for this geography and year, so pct_ever_rx_opioid_misuse (with its CI) was set to 0; 0 otherwise. Distinct from pct_ever_rx_opioid_misuse_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_cocaine": { + "id": "pct_ever_cocaine", + "short_name": "Ever used cocaine", + "long_name": "YRBSS: Ever used cocaine (Alcohol and Other Drug Use)", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H50", + "short_description": "Percent of high school students who ever used cocaine.", + "long_description": "Weighted percentage of U.S. high school students who ever used cocaine, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Alcohol and Other Drug Use; YRBSS question code: H50). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_ever_cocaine_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_ever_cocaine_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_cocaine_lcl": { + "id": "pct_ever_cocaine_lcl", + "short_name": "Ever used cocaine - lower 95% CI", + "long_name": "YRBSS: Ever used cocaine - lower bound of 95% confidence interval", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H50", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who ever used cocaine.", + "long_description": "Lower bound of the 95% confidence interval for pct_ever_cocaine. Weighted percentage of U.S. high school students who ever used cocaine, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Alcohol and Other Drug Use; YRBSS question code: H50). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_ever_cocaine_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_ever_cocaine_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_cocaine_ucl": { + "id": "pct_ever_cocaine_ucl", + "short_name": "Ever used cocaine - upper 95% CI", + "long_name": "YRBSS: Ever used cocaine - upper bound of 95% confidence interval", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H50", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who ever used cocaine.", + "long_description": "Upper bound of the 95% confidence interval for pct_ever_cocaine. Weighted percentage of U.S. high school students who ever used cocaine, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Alcohol and Other Drug Use; YRBSS question code: H50). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_ever_cocaine_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_ever_cocaine_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_cocaine_suppressed": { + "id": "pct_ever_cocaine_suppressed", + "short_name": "Ever used cocaine - suppressed flag", + "long_name": "YRBSS: Ever used cocaine - suppressed flag", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H50", + "short_description": "1 if the estimate for 'pct_ever_cocaine' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_ever_cocaine (with its CI) was set to 0; 0 otherwise. Distinct from pct_ever_cocaine_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_cocaine_not_asked": { + "id": "pct_ever_cocaine_not_asked", + "short_name": "Ever used cocaine - not-asked flag", + "long_name": "YRBSS: Ever used cocaine - not-asked flag", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H50", + "short_description": "1 if 'pct_ever_cocaine' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Ever used cocaine' was not part of the YRBSS survey for this geography and year, so pct_ever_cocaine (with its CI) was set to 0; 0 otherwise. Distinct from pct_ever_cocaine_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_inhalants": { + "id": "pct_ever_inhalants", + "short_name": "Ever used inhalants", + "long_name": "YRBSS: Ever used inhalants (Alcohol and Other Drug Use)", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H51", + "short_description": "Percent of high school students who ever used inhalants.", + "long_description": "Weighted percentage of U.S. high school students who ever used inhalants, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Alcohol and Other Drug Use; YRBSS question code: H51). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_ever_inhalants_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_ever_inhalants_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_inhalants_lcl": { + "id": "pct_ever_inhalants_lcl", + "short_name": "Ever used inhalants - lower 95% CI", + "long_name": "YRBSS: Ever used inhalants - lower bound of 95% confidence interval", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H51", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who ever used inhalants.", + "long_description": "Lower bound of the 95% confidence interval for pct_ever_inhalants. Weighted percentage of U.S. high school students who ever used inhalants, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Alcohol and Other Drug Use; YRBSS question code: H51). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_ever_inhalants_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_ever_inhalants_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_inhalants_ucl": { + "id": "pct_ever_inhalants_ucl", + "short_name": "Ever used inhalants - upper 95% CI", + "long_name": "YRBSS: Ever used inhalants - upper bound of 95% confidence interval", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H51", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who ever used inhalants.", + "long_description": "Upper bound of the 95% confidence interval for pct_ever_inhalants. Weighted percentage of U.S. high school students who ever used inhalants, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Alcohol and Other Drug Use; YRBSS question code: H51). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_ever_inhalants_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_ever_inhalants_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_inhalants_suppressed": { + "id": "pct_ever_inhalants_suppressed", + "short_name": "Ever used inhalants - suppressed flag", + "long_name": "YRBSS: Ever used inhalants - suppressed flag", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H51", + "short_description": "1 if the estimate for 'pct_ever_inhalants' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_ever_inhalants (with its CI) was set to 0; 0 otherwise. Distinct from pct_ever_inhalants_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_inhalants_not_asked": { + "id": "pct_ever_inhalants_not_asked", + "short_name": "Ever used inhalants - not-asked flag", + "long_name": "YRBSS: Ever used inhalants - not-asked flag", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H51", + "short_description": "1 if 'pct_ever_inhalants' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Ever used inhalants' was not part of the YRBSS survey for this geography and year, so pct_ever_inhalants (with its CI) was set to 0; 0 otherwise. Distinct from pct_ever_inhalants_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_heroin": { + "id": "pct_ever_heroin", + "short_name": "Ever used heroin", + "long_name": "YRBSS: Ever used heroin (Alcohol and Other Drug Use)", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H52", + "short_description": "Percent of high school students who ever used heroin.", + "long_description": "Weighted percentage of U.S. high school students who ever used heroin, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Alcohol and Other Drug Use; YRBSS question code: H52). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_ever_heroin_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_ever_heroin_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_heroin_lcl": { + "id": "pct_ever_heroin_lcl", + "short_name": "Ever used heroin - lower 95% CI", + "long_name": "YRBSS: Ever used heroin - lower bound of 95% confidence interval", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H52", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who ever used heroin.", + "long_description": "Lower bound of the 95% confidence interval for pct_ever_heroin. Weighted percentage of U.S. high school students who ever used heroin, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Alcohol and Other Drug Use; YRBSS question code: H52). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_ever_heroin_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_ever_heroin_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_heroin_ucl": { + "id": "pct_ever_heroin_ucl", + "short_name": "Ever used heroin - upper 95% CI", + "long_name": "YRBSS: Ever used heroin - upper bound of 95% confidence interval", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H52", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who ever used heroin.", + "long_description": "Upper bound of the 95% confidence interval for pct_ever_heroin. Weighted percentage of U.S. high school students who ever used heroin, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Alcohol and Other Drug Use; YRBSS question code: H52). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_ever_heroin_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_ever_heroin_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_heroin_suppressed": { + "id": "pct_ever_heroin_suppressed", + "short_name": "Ever used heroin - suppressed flag", + "long_name": "YRBSS: Ever used heroin - suppressed flag", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H52", + "short_description": "1 if the estimate for 'pct_ever_heroin' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_ever_heroin (with its CI) was set to 0; 0 otherwise. Distinct from pct_ever_heroin_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_heroin_not_asked": { + "id": "pct_ever_heroin_not_asked", + "short_name": "Ever used heroin - not-asked flag", + "long_name": "YRBSS: Ever used heroin - not-asked flag", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H52", + "short_description": "1 if 'pct_ever_heroin' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Ever used heroin' was not part of the YRBSS survey for this geography and year, so pct_ever_heroin (with its CI) was set to 0; 0 otherwise. Distinct from pct_ever_heroin_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_methamphetamines": { + "id": "pct_ever_methamphetamines", + "short_name": "Ever used methamphetamines", + "long_name": "YRBSS: Ever used methamphetamines (Alcohol and Other Drug Use)", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H53", + "short_description": "Percent of high school students who ever used methamphetamines.", + "long_description": "Weighted percentage of U.S. high school students who ever used methamphetamines, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Alcohol and Other Drug Use; YRBSS question code: H53). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_ever_methamphetamines_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_ever_methamphetamines_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_methamphetamines_lcl": { + "id": "pct_ever_methamphetamines_lcl", + "short_name": "Ever used methamphetamines - lower 95% CI", + "long_name": "YRBSS: Ever used methamphetamines - lower bound of 95% confidence interval", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H53", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who ever used methamphetamines.", + "long_description": "Lower bound of the 95% confidence interval for pct_ever_methamphetamines. Weighted percentage of U.S. high school students who ever used methamphetamines, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Alcohol and Other Drug Use; YRBSS question code: H53). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_ever_methamphetamines_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_ever_methamphetamines_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_methamphetamines_ucl": { + "id": "pct_ever_methamphetamines_ucl", + "short_name": "Ever used methamphetamines - upper 95% CI", + "long_name": "YRBSS: Ever used methamphetamines - upper bound of 95% confidence interval", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H53", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who ever used methamphetamines.", + "long_description": "Upper bound of the 95% confidence interval for pct_ever_methamphetamines. Weighted percentage of U.S. high school students who ever used methamphetamines, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Alcohol and Other Drug Use; YRBSS question code: H53). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_ever_methamphetamines_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_ever_methamphetamines_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_methamphetamines_suppressed": { + "id": "pct_ever_methamphetamines_suppressed", + "short_name": "Ever used methamphetamines - suppressed flag", + "long_name": "YRBSS: Ever used methamphetamines - suppressed flag", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H53", + "short_description": "1 if the estimate for 'pct_ever_methamphetamines' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_ever_methamphetamines (with its CI) was set to 0; 0 otherwise. Distinct from pct_ever_methamphetamines_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_methamphetamines_not_asked": { + "id": "pct_ever_methamphetamines_not_asked", + "short_name": "Ever used methamphetamines - not-asked flag", + "long_name": "YRBSS: Ever used methamphetamines - not-asked flag", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H53", + "short_description": "1 if 'pct_ever_methamphetamines' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Ever used methamphetamines' was not part of the YRBSS survey for this geography and year, so pct_ever_methamphetamines (with its CI) was set to 0; 0 otherwise. Distinct from pct_ever_methamphetamines_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_ecstasy": { + "id": "pct_ever_ecstasy", + "short_name": "Ever used ecstasy", + "long_name": "YRBSS: Ever used ecstasy (Alcohol and Other Drug Use)", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H54", + "short_description": "Percent of high school students who ever used ecstasy.", + "long_description": "Weighted percentage of U.S. high school students who ever used ecstasy, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Alcohol and Other Drug Use; YRBSS question code: H54). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_ever_ecstasy_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_ever_ecstasy_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_ecstasy_lcl": { + "id": "pct_ever_ecstasy_lcl", + "short_name": "Ever used ecstasy - lower 95% CI", + "long_name": "YRBSS: Ever used ecstasy - lower bound of 95% confidence interval", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H54", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who ever used ecstasy.", + "long_description": "Lower bound of the 95% confidence interval for pct_ever_ecstasy. Weighted percentage of U.S. high school students who ever used ecstasy, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Alcohol and Other Drug Use; YRBSS question code: H54). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_ever_ecstasy_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_ever_ecstasy_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_ecstasy_ucl": { + "id": "pct_ever_ecstasy_ucl", + "short_name": "Ever used ecstasy - upper 95% CI", + "long_name": "YRBSS: Ever used ecstasy - upper bound of 95% confidence interval", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H54", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who ever used ecstasy.", + "long_description": "Upper bound of the 95% confidence interval for pct_ever_ecstasy. Weighted percentage of U.S. high school students who ever used ecstasy, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Alcohol and Other Drug Use; YRBSS question code: H54). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_ever_ecstasy_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_ever_ecstasy_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_ecstasy_suppressed": { + "id": "pct_ever_ecstasy_suppressed", + "short_name": "Ever used ecstasy - suppressed flag", + "long_name": "YRBSS: Ever used ecstasy - suppressed flag", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H54", + "short_description": "1 if the estimate for 'pct_ever_ecstasy' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_ever_ecstasy (with its CI) was set to 0; 0 otherwise. Distinct from pct_ever_ecstasy_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_ecstasy_not_asked": { + "id": "pct_ever_ecstasy_not_asked", + "short_name": "Ever used ecstasy - not-asked flag", + "long_name": "YRBSS: Ever used ecstasy - not-asked flag", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H54", + "short_description": "1 if 'pct_ever_ecstasy' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Ever used ecstasy' was not part of the YRBSS survey for this geography and year, so pct_ever_ecstasy (with its CI) was set to 0; 0 otherwise. Distinct from pct_ever_ecstasy_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_inject_drug": { + "id": "pct_ever_inject_drug", + "short_name": "Ever injected illegal drug", + "long_name": "YRBSS: Ever injected any illegal drug (Alcohol and Other Drug Use)", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H55", + "short_description": "Percent of high school students who ever injected any illegal drug.", + "long_description": "Weighted percentage of U.S. high school students who ever injected any illegal drug, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Alcohol and Other Drug Use; YRBSS question code: H55). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_ever_inject_drug_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_ever_inject_drug_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_inject_drug_lcl": { + "id": "pct_ever_inject_drug_lcl", + "short_name": "Ever injected illegal drug - lower 95% CI", + "long_name": "YRBSS: Ever injected any illegal drug - lower bound of 95% confidence interval", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H55", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who ever injected any illegal drug.", + "long_description": "Lower bound of the 95% confidence interval for pct_ever_inject_drug. Weighted percentage of U.S. high school students who ever injected any illegal drug, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Alcohol and Other Drug Use; YRBSS question code: H55). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_ever_inject_drug_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_ever_inject_drug_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_inject_drug_ucl": { + "id": "pct_ever_inject_drug_ucl", + "short_name": "Ever injected illegal drug - upper 95% CI", + "long_name": "YRBSS: Ever injected any illegal drug - upper bound of 95% confidence interval", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H55", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who ever injected any illegal drug.", + "long_description": "Upper bound of the 95% confidence interval for pct_ever_inject_drug. Weighted percentage of U.S. high school students who ever injected any illegal drug, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Alcohol and Other Drug Use; YRBSS question code: H55). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_ever_inject_drug_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_ever_inject_drug_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_inject_drug_suppressed": { + "id": "pct_ever_inject_drug_suppressed", + "short_name": "Ever injected illegal drug - suppressed flag", + "long_name": "YRBSS: Ever injected any illegal drug - suppressed flag", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H55", + "short_description": "1 if the estimate for 'pct_ever_inject_drug' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_ever_inject_drug (with its CI) was set to 0; 0 otherwise. Distinct from pct_ever_inject_drug_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_inject_drug_not_asked": { + "id": "pct_ever_inject_drug_not_asked", + "short_name": "Ever injected illegal drug - not-asked flag", + "long_name": "YRBSS: Ever injected any illegal drug - not-asked flag", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "H55", + "short_description": "1 if 'pct_ever_inject_drug' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Ever injected any illegal drug' was not part of the YRBSS survey for this geography and year, so pct_ever_inject_drug (with its CI) was set to 0; 0 otherwise. Distinct from pct_ever_inject_drug_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_current_rx_opioid_misuse": { + "id": "pct_current_rx_opioid_misuse", + "short_name": "Currently misused Rx opioids", + "long_name": "YRBSS: Currently took prescription pain medicine without a doctor's prescription or differently than how a doctor told them to use it (Alcohol and Other Drug Use)", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "QNCURRENTOPIOID", + "short_description": "Percent of high school students who currently took prescription pain medicine without a doctor's prescription or differently than how a doctor told them to use it.", + "long_description": "Weighted percentage of U.S. high school students who currently took prescription pain medicine without a doctor's prescription or differently than how a doctor told them to use it, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Alcohol and Other Drug Use; YRBSS question code: QNCURRENTOPIOID). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_current_rx_opioid_misuse_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_current_rx_opioid_misuse_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_current_rx_opioid_misuse_lcl": { + "id": "pct_current_rx_opioid_misuse_lcl", + "short_name": "Currently misused Rx opioids - lower 95% CI", + "long_name": "YRBSS: Currently took prescription pain medicine without a doctor's prescription or differently than how a doctor told them to use it - lower bound of 95% confidence interval", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "QNCURRENTOPIOID", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who currently took prescription pain medicine without a doctor's prescription or differently than how a doctor told them to use it.", + "long_description": "Lower bound of the 95% confidence interval for pct_current_rx_opioid_misuse. Weighted percentage of U.S. high school students who currently took prescription pain medicine without a doctor's prescription or differently than how a doctor told them to use it, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Alcohol and Other Drug Use; YRBSS question code: QNCURRENTOPIOID). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_current_rx_opioid_misuse_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_current_rx_opioid_misuse_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_current_rx_opioid_misuse_ucl": { + "id": "pct_current_rx_opioid_misuse_ucl", + "short_name": "Currently misused Rx opioids - upper 95% CI", + "long_name": "YRBSS: Currently took prescription pain medicine without a doctor's prescription or differently than how a doctor told them to use it - upper bound of 95% confidence interval", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "QNCURRENTOPIOID", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who currently took prescription pain medicine without a doctor's prescription or differently than how a doctor told them to use it.", + "long_description": "Upper bound of the 95% confidence interval for pct_current_rx_opioid_misuse. Weighted percentage of U.S. high school students who currently took prescription pain medicine without a doctor's prescription or differently than how a doctor told them to use it, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Alcohol and Other Drug Use; YRBSS question code: QNCURRENTOPIOID). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_current_rx_opioid_misuse_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_current_rx_opioid_misuse_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_current_rx_opioid_misuse_suppressed": { + "id": "pct_current_rx_opioid_misuse_suppressed", + "short_name": "Currently misused Rx opioids - suppressed flag", + "long_name": "YRBSS: Currently took prescription pain medicine without a doctor's prescription or differently than how a doctor told them to use it - suppressed flag", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "QNCURRENTOPIOID", + "short_description": "1 if the estimate for 'pct_current_rx_opioid_misuse' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_current_rx_opioid_misuse (with its CI) was set to 0; 0 otherwise. Distinct from pct_current_rx_opioid_misuse_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_current_rx_opioid_misuse_not_asked": { + "id": "pct_current_rx_opioid_misuse_not_asked", + "short_name": "Currently misused Rx opioids - not-asked flag", + "long_name": "YRBSS: Currently took prescription pain medicine without a doctor's prescription or differently than how a doctor told them to use it - not-asked flag", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "QNCURRENTOPIOID", + "short_description": "1 if 'pct_current_rx_opioid_misuse' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Currently took prescription pain medicine without a doctor's prescription or differently than how a doctor told them to use it' was not part of the YRBSS survey for this geography and year, so pct_current_rx_opioid_misuse (with its CI) was set to 0; 0 otherwise. Distinct from pct_current_rx_opioid_misuse_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_hallucinogens": { + "id": "pct_ever_hallucinogens", + "short_name": "Ever used hallucinogens", + "long_name": "YRBSS: Ever used hallucinogenic drugs (Alcohol and Other Drug Use)", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "QNHALLUCDRUG", + "short_description": "Percent of high school students who ever used hallucinogenic drugs.", + "long_description": "Weighted percentage of U.S. high school students who ever used hallucinogenic drugs, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Alcohol and Other Drug Use; YRBSS question code: QNHALLUCDRUG). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_ever_hallucinogens_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_ever_hallucinogens_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_hallucinogens_lcl": { + "id": "pct_ever_hallucinogens_lcl", + "short_name": "Ever used hallucinogens - lower 95% CI", + "long_name": "YRBSS: Ever used hallucinogenic drugs - lower bound of 95% confidence interval", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "QNHALLUCDRUG", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who ever used hallucinogenic drugs.", + "long_description": "Lower bound of the 95% confidence interval for pct_ever_hallucinogens. Weighted percentage of U.S. high school students who ever used hallucinogenic drugs, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Alcohol and Other Drug Use; YRBSS question code: QNHALLUCDRUG). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_ever_hallucinogens_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_ever_hallucinogens_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_hallucinogens_ucl": { + "id": "pct_ever_hallucinogens_ucl", + "short_name": "Ever used hallucinogens - upper 95% CI", + "long_name": "YRBSS: Ever used hallucinogenic drugs - upper bound of 95% confidence interval", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "QNHALLUCDRUG", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who ever used hallucinogenic drugs.", + "long_description": "Upper bound of the 95% confidence interval for pct_ever_hallucinogens. Weighted percentage of U.S. high school students who ever used hallucinogenic drugs, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Alcohol and Other Drug Use; YRBSS question code: QNHALLUCDRUG). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_ever_hallucinogens_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_ever_hallucinogens_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_hallucinogens_suppressed": { + "id": "pct_ever_hallucinogens_suppressed", + "short_name": "Ever used hallucinogens - suppressed flag", + "long_name": "YRBSS: Ever used hallucinogenic drugs - suppressed flag", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "QNHALLUCDRUG", + "short_description": "1 if the estimate for 'pct_ever_hallucinogens' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_ever_hallucinogens (with its CI) was set to 0; 0 otherwise. Distinct from pct_ever_hallucinogens_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_hallucinogens_not_asked": { + "id": "pct_ever_hallucinogens_not_asked", + "short_name": "Ever used hallucinogens - not-asked flag", + "long_name": "YRBSS: Ever used hallucinogenic drugs - not-asked flag", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "QNHALLUCDRUG", + "short_description": "1 if 'pct_ever_hallucinogens' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Ever used hallucinogenic drugs' was not part of the YRBSS survey for this geography and year, so pct_ever_hallucinogens (with its CI) was set to 0; 0 otherwise. Distinct from pct_ever_hallucinogens_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_illicit_drug": { + "id": "pct_ever_illicit_drug", + "short_name": "Ever used select illicit drugs", + "long_name": "YRBSS: Ever used select illicit drugs (Alcohol and Other Drug Use)", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "QNILLICT", + "short_description": "Percent of high school students who ever used select illicit drugs.", + "long_description": "Weighted percentage of U.S. high school students who ever used select illicit drugs, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Alcohol and Other Drug Use; YRBSS question code: QNILLICT). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_ever_illicit_drug_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_ever_illicit_drug_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_illicit_drug_lcl": { + "id": "pct_ever_illicit_drug_lcl", + "short_name": "Ever used select illicit drugs - lower 95% CI", + "long_name": "YRBSS: Ever used select illicit drugs - lower bound of 95% confidence interval", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "QNILLICT", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who ever used select illicit drugs.", + "long_description": "Lower bound of the 95% confidence interval for pct_ever_illicit_drug. Weighted percentage of U.S. high school students who ever used select illicit drugs, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Alcohol and Other Drug Use; YRBSS question code: QNILLICT). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_ever_illicit_drug_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_ever_illicit_drug_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_illicit_drug_ucl": { + "id": "pct_ever_illicit_drug_ucl", + "short_name": "Ever used select illicit drugs - upper 95% CI", + "long_name": "YRBSS: Ever used select illicit drugs - upper bound of 95% confidence interval", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "QNILLICT", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who ever used select illicit drugs.", + "long_description": "Upper bound of the 95% confidence interval for pct_ever_illicit_drug. Weighted percentage of U.S. high school students who ever used select illicit drugs, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Alcohol and Other Drug Use; YRBSS question code: QNILLICT). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_ever_illicit_drug_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_ever_illicit_drug_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_illicit_drug_suppressed": { + "id": "pct_ever_illicit_drug_suppressed", + "short_name": "Ever used select illicit drugs - suppressed flag", + "long_name": "YRBSS: Ever used select illicit drugs - suppressed flag", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "QNILLICT", + "short_description": "1 if the estimate for 'pct_ever_illicit_drug' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_ever_illicit_drug (with its CI) was set to 0; 0 otherwise. Distinct from pct_ever_illicit_drug_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_illicit_drug_not_asked": { + "id": "pct_ever_illicit_drug_not_asked", + "short_name": "Ever used select illicit drugs - not-asked flag", + "long_name": "YRBSS: Ever used select illicit drugs - not-asked flag", + "category": "chronic", + "topic": "Alcohol and Other Drug Use", + "question_code": "QNILLICT", + "short_description": "1 if 'pct_ever_illicit_drug' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Ever used select illicit drugs' was not part of the YRBSS survey for this geography and year, so pct_ever_illicit_drug (with its CI) was set to 0; 0 otherwise. Distinct from pct_ever_illicit_drug_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_no_breakfast": { + "id": "pct_no_breakfast", + "short_name": "Did not eat breakfast", + "long_name": "YRBSS: Did not eat breakfast (during the 7 days before the survey) (Dietary Behaviors)", + "category": "chronic", + "topic": "Dietary Behaviors", + "question_code": "H75", + "short_description": "Percent of high school students who did not eat breakfast (during the 7 days before the survey).", + "long_description": "Weighted percentage of U.S. high school students who did not eat breakfast (during the 7 days before the survey), from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Dietary Behaviors; YRBSS question code: H75). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_no_breakfast_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_no_breakfast_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_no_breakfast_lcl": { + "id": "pct_no_breakfast_lcl", + "short_name": "Did not eat breakfast - lower 95% CI", + "long_name": "YRBSS: Did not eat breakfast (during the 7 days before the survey) - lower bound of 95% confidence interval", + "category": "chronic", + "topic": "Dietary Behaviors", + "question_code": "H75", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who did not eat breakfast (during the 7 days before the survey).", + "long_description": "Lower bound of the 95% confidence interval for pct_no_breakfast. Weighted percentage of U.S. high school students who did not eat breakfast (during the 7 days before the survey), from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Dietary Behaviors; YRBSS question code: H75). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_no_breakfast_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_no_breakfast_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_no_breakfast_ucl": { + "id": "pct_no_breakfast_ucl", + "short_name": "Did not eat breakfast - upper 95% CI", + "long_name": "YRBSS: Did not eat breakfast (during the 7 days before the survey) - upper bound of 95% confidence interval", + "category": "chronic", + "topic": "Dietary Behaviors", + "question_code": "H75", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who did not eat breakfast (during the 7 days before the survey).", + "long_description": "Upper bound of the 95% confidence interval for pct_no_breakfast. Weighted percentage of U.S. high school students who did not eat breakfast (during the 7 days before the survey), from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Dietary Behaviors; YRBSS question code: H75). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_no_breakfast_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_no_breakfast_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_no_breakfast_suppressed": { + "id": "pct_no_breakfast_suppressed", + "short_name": "Did not eat breakfast - suppressed flag", + "long_name": "YRBSS: Did not eat breakfast (during the 7 days before the survey) - suppressed flag", + "category": "chronic", + "topic": "Dietary Behaviors", + "question_code": "H75", + "short_description": "1 if the estimate for 'pct_no_breakfast' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_no_breakfast (with its CI) was set to 0; 0 otherwise. Distinct from pct_no_breakfast_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_no_breakfast_not_asked": { + "id": "pct_no_breakfast_not_asked", + "short_name": "Did not eat breakfast - not-asked flag", + "long_name": "YRBSS: Did not eat breakfast (during the 7 days before the survey) - not-asked flag", + "category": "chronic", + "topic": "Dietary Behaviors", + "question_code": "H75", + "short_description": "1 if 'pct_no_breakfast' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Did not eat breakfast (during the 7 days before the survey)' was not part of the YRBSS survey for this geography and year, so pct_no_breakfast (with its CI) was set to 0; 0 otherwise. Distinct from pct_no_breakfast_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_no_breakfast_7days": { + "id": "pct_no_breakfast_7days", + "short_name": "No breakfast on all 7 days", + "long_name": "YRBSS: Did not eat breakfast on all 7 days (before the survey) (Dietary Behaviors)", + "category": "chronic", + "topic": "Dietary Behaviors", + "question_code": "QNBK7DAY", + "short_description": "Percent of high school students who did not eat breakfast on all 7 days (before the survey).", + "long_description": "Weighted percentage of U.S. high school students who did not eat breakfast on all 7 days (before the survey), from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Dietary Behaviors; YRBSS question code: QNBK7DAY). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_no_breakfast_7days_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_no_breakfast_7days_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_no_breakfast_7days_lcl": { + "id": "pct_no_breakfast_7days_lcl", + "short_name": "No breakfast on all 7 days - lower 95% CI", + "long_name": "YRBSS: Did not eat breakfast on all 7 days (before the survey) - lower bound of 95% confidence interval", + "category": "chronic", + "topic": "Dietary Behaviors", + "question_code": "QNBK7DAY", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who did not eat breakfast on all 7 days (before the survey).", + "long_description": "Lower bound of the 95% confidence interval for pct_no_breakfast_7days. Weighted percentage of U.S. high school students who did not eat breakfast on all 7 days (before the survey), from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Dietary Behaviors; YRBSS question code: QNBK7DAY). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_no_breakfast_7days_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_no_breakfast_7days_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_no_breakfast_7days_ucl": { + "id": "pct_no_breakfast_7days_ucl", + "short_name": "No breakfast on all 7 days - upper 95% CI", + "long_name": "YRBSS: Did not eat breakfast on all 7 days (before the survey) - upper bound of 95% confidence interval", + "category": "chronic", + "topic": "Dietary Behaviors", + "question_code": "QNBK7DAY", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who did not eat breakfast on all 7 days (before the survey).", + "long_description": "Upper bound of the 95% confidence interval for pct_no_breakfast_7days. Weighted percentage of U.S. high school students who did not eat breakfast on all 7 days (before the survey), from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Dietary Behaviors; YRBSS question code: QNBK7DAY). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_no_breakfast_7days_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_no_breakfast_7days_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_no_breakfast_7days_suppressed": { + "id": "pct_no_breakfast_7days_suppressed", + "short_name": "No breakfast on all 7 days - suppressed flag", + "long_name": "YRBSS: Did not eat breakfast on all 7 days (before the survey) - suppressed flag", + "category": "chronic", + "topic": "Dietary Behaviors", + "question_code": "QNBK7DAY", + "short_description": "1 if the estimate for 'pct_no_breakfast_7days' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_no_breakfast_7days (with its CI) was set to 0; 0 otherwise. Distinct from pct_no_breakfast_7days_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_no_breakfast_7days_not_asked": { + "id": "pct_no_breakfast_7days_not_asked", + "short_name": "No breakfast on all 7 days - not-asked flag", + "long_name": "YRBSS: Did not eat breakfast on all 7 days (before the survey) - not-asked flag", + "category": "chronic", + "topic": "Dietary Behaviors", + "question_code": "QNBK7DAY", + "short_description": "1 if 'pct_no_breakfast_7days' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Did not eat breakfast on all 7 days (before the survey)' was not part of the YRBSS survey for this geography and year, so pct_no_breakfast_7days (with its CI) was set to 0; 0 otherwise. Distinct from pct_no_breakfast_7days_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_no_fruit": { + "id": "pct_no_fruit", + "short_name": "Did not eat fruit", + "long_name": "YRBSS: Did not eat fruit or drink 100% fruit juices (during the 7 days before the survey) (Dietary Behaviors)", + "category": "chronic", + "topic": "Dietary Behaviors", + "question_code": "QNFR0", + "short_description": "Percent of high school students who did not eat fruit or drink 100% fruit juices (during the 7 days before the survey).", + "long_description": "Weighted percentage of U.S. high school students who did not eat fruit or drink 100% fruit juices (during the 7 days before the survey), from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Dietary Behaviors; YRBSS question code: QNFR0). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_no_fruit_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_no_fruit_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_no_fruit_lcl": { + "id": "pct_no_fruit_lcl", + "short_name": "Did not eat fruit - lower 95% CI", + "long_name": "YRBSS: Did not eat fruit or drink 100% fruit juices (during the 7 days before the survey) - lower bound of 95% confidence interval", + "category": "chronic", + "topic": "Dietary Behaviors", + "question_code": "QNFR0", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who did not eat fruit or drink 100% fruit juices (during the 7 days before the survey).", + "long_description": "Lower bound of the 95% confidence interval for pct_no_fruit. Weighted percentage of U.S. high school students who did not eat fruit or drink 100% fruit juices (during the 7 days before the survey), from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Dietary Behaviors; YRBSS question code: QNFR0). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_no_fruit_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_no_fruit_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_no_fruit_ucl": { + "id": "pct_no_fruit_ucl", + "short_name": "Did not eat fruit - upper 95% CI", + "long_name": "YRBSS: Did not eat fruit or drink 100% fruit juices (during the 7 days before the survey) - upper bound of 95% confidence interval", + "category": "chronic", + "topic": "Dietary Behaviors", + "question_code": "QNFR0", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who did not eat fruit or drink 100% fruit juices (during the 7 days before the survey).", + "long_description": "Upper bound of the 95% confidence interval for pct_no_fruit. Weighted percentage of U.S. high school students who did not eat fruit or drink 100% fruit juices (during the 7 days before the survey), from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Dietary Behaviors; YRBSS question code: QNFR0). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_no_fruit_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_no_fruit_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_no_fruit_suppressed": { + "id": "pct_no_fruit_suppressed", + "short_name": "Did not eat fruit - suppressed flag", + "long_name": "YRBSS: Did not eat fruit or drink 100% fruit juices (during the 7 days before the survey) - suppressed flag", + "category": "chronic", + "topic": "Dietary Behaviors", + "question_code": "QNFR0", + "short_description": "1 if the estimate for 'pct_no_fruit' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_no_fruit (with its CI) was set to 0; 0 otherwise. Distinct from pct_no_fruit_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_no_fruit_not_asked": { + "id": "pct_no_fruit_not_asked", + "short_name": "Did not eat fruit - not-asked flag", + "long_name": "YRBSS: Did not eat fruit or drink 100% fruit juices (during the 7 days before the survey) - not-asked flag", + "category": "chronic", + "topic": "Dietary Behaviors", + "question_code": "QNFR0", + "short_description": "1 if 'pct_no_fruit' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Did not eat fruit or drink 100% fruit juices (during the 7 days before the survey)' was not part of the YRBSS survey for this geography and year, so pct_no_fruit (with its CI) was set to 0; 0 otherwise. Distinct from pct_no_fruit_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_no_vegetables": { + "id": "pct_no_vegetables", + "short_name": "Did not eat vegetables", + "long_name": "YRBSS: Did not eat vegetables (during the 7 days before the survey) (Dietary Behaviors)", + "category": "chronic", + "topic": "Dietary Behaviors", + "question_code": "QNVEG0", + "short_description": "Percent of high school students who did not eat vegetables (during the 7 days before the survey).", + "long_description": "Weighted percentage of U.S. high school students who did not eat vegetables (during the 7 days before the survey), from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Dietary Behaviors; YRBSS question code: QNVEG0). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_no_vegetables_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_no_vegetables_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_no_vegetables_lcl": { + "id": "pct_no_vegetables_lcl", + "short_name": "Did not eat vegetables - lower 95% CI", + "long_name": "YRBSS: Did not eat vegetables (during the 7 days before the survey) - lower bound of 95% confidence interval", + "category": "chronic", + "topic": "Dietary Behaviors", + "question_code": "QNVEG0", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who did not eat vegetables (during the 7 days before the survey).", + "long_description": "Lower bound of the 95% confidence interval for pct_no_vegetables. Weighted percentage of U.S. high school students who did not eat vegetables (during the 7 days before the survey), from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Dietary Behaviors; YRBSS question code: QNVEG0). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_no_vegetables_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_no_vegetables_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_no_vegetables_ucl": { + "id": "pct_no_vegetables_ucl", + "short_name": "Did not eat vegetables - upper 95% CI", + "long_name": "YRBSS: Did not eat vegetables (during the 7 days before the survey) - upper bound of 95% confidence interval", + "category": "chronic", + "topic": "Dietary Behaviors", + "question_code": "QNVEG0", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who did not eat vegetables (during the 7 days before the survey).", + "long_description": "Upper bound of the 95% confidence interval for pct_no_vegetables. Weighted percentage of U.S. high school students who did not eat vegetables (during the 7 days before the survey), from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Dietary Behaviors; YRBSS question code: QNVEG0). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_no_vegetables_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_no_vegetables_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_no_vegetables_suppressed": { + "id": "pct_no_vegetables_suppressed", + "short_name": "Did not eat vegetables - suppressed flag", + "long_name": "YRBSS: Did not eat vegetables (during the 7 days before the survey) - suppressed flag", + "category": "chronic", + "topic": "Dietary Behaviors", + "question_code": "QNVEG0", + "short_description": "1 if the estimate for 'pct_no_vegetables' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_no_vegetables (with its CI) was set to 0; 0 otherwise. Distinct from pct_no_vegetables_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_no_vegetables_not_asked": { + "id": "pct_no_vegetables_not_asked", + "short_name": "Did not eat vegetables - not-asked flag", + "long_name": "YRBSS: Did not eat vegetables (during the 7 days before the survey) - not-asked flag", + "category": "chronic", + "topic": "Dietary Behaviors", + "question_code": "QNVEG0", + "short_description": "1 if 'pct_no_vegetables' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Did not eat vegetables (during the 7 days before the survey)' was not part of the YRBSS survey for this geography and year, so pct_no_vegetables (with its CI) was set to 0; 0 otherwise. Distinct from pct_no_vegetables_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_social_media_daily": { + "id": "pct_social_media_daily", + "short_name": "Used social media several/day", + "long_name": "YRBSS: Used social media at least several times a day (Other Health Topics)", + "category": "chronic", + "topic": "Other Health Topics", + "question_code": "H80", + "short_description": "Percent of high school students who used social media at least several times a day.", + "long_description": "Weighted percentage of U.S. high school students who used social media at least several times a day, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Other Health Topics; YRBSS question code: H80). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_social_media_daily_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_social_media_daily_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_social_media_daily_lcl": { + "id": "pct_social_media_daily_lcl", + "short_name": "Used social media several/day - lower 95% CI", + "long_name": "YRBSS: Used social media at least several times a day - lower bound of 95% confidence interval", + "category": "chronic", + "topic": "Other Health Topics", + "question_code": "H80", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who used social media at least several times a day.", + "long_description": "Lower bound of the 95% confidence interval for pct_social_media_daily. Weighted percentage of U.S. high school students who used social media at least several times a day, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Other Health Topics; YRBSS question code: H80). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_social_media_daily_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_social_media_daily_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_social_media_daily_ucl": { + "id": "pct_social_media_daily_ucl", + "short_name": "Used social media several/day - upper 95% CI", + "long_name": "YRBSS: Used social media at least several times a day - upper bound of 95% confidence interval", + "category": "chronic", + "topic": "Other Health Topics", + "question_code": "H80", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who used social media at least several times a day.", + "long_description": "Upper bound of the 95% confidence interval for pct_social_media_daily. Weighted percentage of U.S. high school students who used social media at least several times a day, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Other Health Topics; YRBSS question code: H80). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_social_media_daily_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_social_media_daily_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_social_media_daily_suppressed": { + "id": "pct_social_media_daily_suppressed", + "short_name": "Used social media several/day - suppressed flag", + "long_name": "YRBSS: Used social media at least several times a day - suppressed flag", + "category": "chronic", + "topic": "Other Health Topics", + "question_code": "H80", + "short_description": "1 if the estimate for 'pct_social_media_daily' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_social_media_daily (with its CI) was set to 0; 0 otherwise. Distinct from pct_social_media_daily_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_social_media_daily_not_asked": { + "id": "pct_social_media_daily_not_asked", + "short_name": "Used social media several/day - not-asked flag", + "long_name": "YRBSS: Used social media at least several times a day - not-asked flag", + "category": "chronic", + "topic": "Other Health Topics", + "question_code": "H80", + "short_description": "1 if 'pct_social_media_daily' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Used social media at least several times a day' was not part of the YRBSS survey for this geography and year, so pct_social_media_daily (with its CI) was set to 0; 0 otherwise. Distinct from pct_social_media_daily_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_poor_mental_health": { + "id": "pct_poor_mental_health", + "short_name": "Poor mental health", + "long_name": "YRBSS: Reported that their mental health was most of the time or always not good (Other Health Topics)", + "category": "chronic", + "topic": "Other Health Topics", + "question_code": "H84", + "short_description": "Percent of high school students who reported that their mental health was most of the time or always not good.", + "long_description": "Weighted percentage of U.S. high school students who reported that their mental health was most of the time or always not good, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Other Health Topics; YRBSS question code: H84). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_poor_mental_health_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_poor_mental_health_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_poor_mental_health_lcl": { + "id": "pct_poor_mental_health_lcl", + "short_name": "Poor mental health - lower 95% CI", + "long_name": "YRBSS: Reported that their mental health was most of the time or always not good - lower bound of 95% confidence interval", + "category": "chronic", + "topic": "Other Health Topics", + "question_code": "H84", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who reported that their mental health was most of the time or always not good.", + "long_description": "Lower bound of the 95% confidence interval for pct_poor_mental_health. Weighted percentage of U.S. high school students who reported that their mental health was most of the time or always not good, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Other Health Topics; YRBSS question code: H84). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_poor_mental_health_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_poor_mental_health_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_poor_mental_health_ucl": { + "id": "pct_poor_mental_health_ucl", + "short_name": "Poor mental health - upper 95% CI", + "long_name": "YRBSS: Reported that their mental health was most of the time or always not good - upper bound of 95% confidence interval", + "category": "chronic", + "topic": "Other Health Topics", + "question_code": "H84", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who reported that their mental health was most of the time or always not good.", + "long_description": "Upper bound of the 95% confidence interval for pct_poor_mental_health. Weighted percentage of U.S. high school students who reported that their mental health was most of the time or always not good, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Other Health Topics; YRBSS question code: H84). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_poor_mental_health_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_poor_mental_health_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_poor_mental_health_suppressed": { + "id": "pct_poor_mental_health_suppressed", + "short_name": "Poor mental health - suppressed flag", + "long_name": "YRBSS: Reported that their mental health was most of the time or always not good - suppressed flag", + "category": "chronic", + "topic": "Other Health Topics", + "question_code": "H84", + "short_description": "1 if the estimate for 'pct_poor_mental_health' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_poor_mental_health (with its CI) was set to 0; 0 otherwise. Distinct from pct_poor_mental_health_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_poor_mental_health_not_asked": { + "id": "pct_poor_mental_health_not_asked", + "short_name": "Poor mental health - not-asked flag", + "long_name": "YRBSS: Reported that their mental health was most of the time or always not good - not-asked flag", + "category": "chronic", + "topic": "Other Health Topics", + "question_code": "H84", + "short_description": "1 if 'pct_poor_mental_health' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Reported that their mental health was most of the time or always not good' was not part of the YRBSS survey for this geography and year, so pct_poor_mental_health (with its CI) was set to 0; 0 otherwise. Distinct from pct_poor_mental_health_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_insufficient_sleep": { + "id": "pct_insufficient_sleep", + "short_name": "Insufficient sleep (<8 hrs)", + "long_name": "YRBSS: Did not get 8 or more hours of sleep (on an average school night) (Other Health Topics)", + "category": "chronic", + "topic": "Other Health Topics", + "question_code": "H85", + "short_description": "Percent of high school students who did not get 8 or more hours of sleep (on an average school night).", + "long_description": "Weighted percentage of U.S. high school students who did not get 8 or more hours of sleep (on an average school night), from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Other Health Topics; YRBSS question code: H85). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_insufficient_sleep_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_insufficient_sleep_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_insufficient_sleep_lcl": { + "id": "pct_insufficient_sleep_lcl", + "short_name": "Insufficient sleep (<8 hrs) - lower 95% CI", + "long_name": "YRBSS: Did not get 8 or more hours of sleep (on an average school night) - lower bound of 95% confidence interval", + "category": "chronic", + "topic": "Other Health Topics", + "question_code": "H85", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who did not get 8 or more hours of sleep (on an average school night).", + "long_description": "Lower bound of the 95% confidence interval for pct_insufficient_sleep. Weighted percentage of U.S. high school students who did not get 8 or more hours of sleep (on an average school night), from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Other Health Topics; YRBSS question code: H85). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_insufficient_sleep_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_insufficient_sleep_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_insufficient_sleep_ucl": { + "id": "pct_insufficient_sleep_ucl", + "short_name": "Insufficient sleep (<8 hrs) - upper 95% CI", + "long_name": "YRBSS: Did not get 8 or more hours of sleep (on an average school night) - upper bound of 95% confidence interval", + "category": "chronic", + "topic": "Other Health Topics", + "question_code": "H85", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who did not get 8 or more hours of sleep (on an average school night).", + "long_description": "Upper bound of the 95% confidence interval for pct_insufficient_sleep. Weighted percentage of U.S. high school students who did not get 8 or more hours of sleep (on an average school night), from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Other Health Topics; YRBSS question code: H85). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_insufficient_sleep_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_insufficient_sleep_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_insufficient_sleep_suppressed": { + "id": "pct_insufficient_sleep_suppressed", + "short_name": "Insufficient sleep (<8 hrs) - suppressed flag", + "long_name": "YRBSS: Did not get 8 or more hours of sleep (on an average school night) - suppressed flag", + "category": "chronic", + "topic": "Other Health Topics", + "question_code": "H85", + "short_description": "1 if the estimate for 'pct_insufficient_sleep' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_insufficient_sleep (with its CI) was set to 0; 0 otherwise. Distinct from pct_insufficient_sleep_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_insufficient_sleep_not_asked": { + "id": "pct_insufficient_sleep_not_asked", + "short_name": "Insufficient sleep (<8 hrs) - not-asked flag", + "long_name": "YRBSS: Did not get 8 or more hours of sleep (on an average school night) - not-asked flag", + "category": "chronic", + "topic": "Other Health Topics", + "question_code": "H85", + "short_description": "1 if 'pct_insufficient_sleep' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Did not get 8 or more hours of sleep (on an average school night)' was not part of the YRBSS survey for this geography and year, so pct_insufficient_sleep (with its CI) was set to 0; 0 otherwise. Distinct from pct_insufficient_sleep_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_unstable_housing": { + "id": "pct_unstable_housing", + "short_name": "Experienced unstable housing", + "long_name": "YRBSS: Experienced unstable housing (Other Health Topics)", + "category": "chronic", + "topic": "Other Health Topics", + "question_code": "H86", + "short_description": "Percent of high school students who experienced unstable housing.", + "long_description": "Weighted percentage of U.S. high school students who experienced unstable housing, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Other Health Topics; YRBSS question code: H86). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_unstable_housing_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_unstable_housing_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_unstable_housing_lcl": { + "id": "pct_unstable_housing_lcl", + "short_name": "Experienced unstable housing - lower 95% CI", + "long_name": "YRBSS: Experienced unstable housing - lower bound of 95% confidence interval", + "category": "chronic", + "topic": "Other Health Topics", + "question_code": "H86", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who experienced unstable housing.", + "long_description": "Lower bound of the 95% confidence interval for pct_unstable_housing. Weighted percentage of U.S. high school students who experienced unstable housing, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Other Health Topics; YRBSS question code: H86). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_unstable_housing_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_unstable_housing_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_unstable_housing_ucl": { + "id": "pct_unstable_housing_ucl", + "short_name": "Experienced unstable housing - upper 95% CI", + "long_name": "YRBSS: Experienced unstable housing - upper bound of 95% confidence interval", + "category": "chronic", + "topic": "Other Health Topics", + "question_code": "H86", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who experienced unstable housing.", + "long_description": "Upper bound of the 95% confidence interval for pct_unstable_housing. Weighted percentage of U.S. high school students who experienced unstable housing, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Other Health Topics; YRBSS question code: H86). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_unstable_housing_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_unstable_housing_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_unstable_housing_suppressed": { + "id": "pct_unstable_housing_suppressed", + "short_name": "Experienced unstable housing - suppressed flag", + "long_name": "YRBSS: Experienced unstable housing - suppressed flag", + "category": "chronic", + "topic": "Other Health Topics", + "question_code": "H86", + "short_description": "1 if the estimate for 'pct_unstable_housing' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_unstable_housing (with its CI) was set to 0; 0 otherwise. Distinct from pct_unstable_housing_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_unstable_housing_not_asked": { + "id": "pct_unstable_housing_not_asked", + "short_name": "Experienced unstable housing - not-asked flag", + "long_name": "YRBSS: Experienced unstable housing - not-asked flag", + "category": "chronic", + "topic": "Other Health Topics", + "question_code": "H86", + "short_description": "1 if 'pct_unstable_housing' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Experienced unstable housing' was not part of the YRBSS survey for this geography and year, so pct_unstable_housing (with its CI) was set to 0; 0 otherwise. Distinct from pct_unstable_housing_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_not_close_at_school": { + "id": "pct_not_close_at_school", + "short_name": "Did not feel close at school", + "long_name": "YRBSS: Strongly disagreed or disagreed that they feel close to people at their school (Other Health Topics)", + "category": "chronic", + "topic": "Other Health Topics", + "question_code": "QNCLOSE2PEOPLE", + "short_description": "Percent of high school students who strongly disagreed or disagreed that they feel close to people at their school.", + "long_description": "Weighted percentage of U.S. high school students who strongly disagreed or disagreed that they feel close to people at their school, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Other Health Topics; YRBSS question code: QNCLOSE2PEOPLE). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_not_close_at_school_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_not_close_at_school_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_not_close_at_school_lcl": { + "id": "pct_not_close_at_school_lcl", + "short_name": "Did not feel close at school - lower 95% CI", + "long_name": "YRBSS: Strongly disagreed or disagreed that they feel close to people at their school - lower bound of 95% confidence interval", + "category": "chronic", + "topic": "Other Health Topics", + "question_code": "QNCLOSE2PEOPLE", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who strongly disagreed or disagreed that they feel close to people at their school.", + "long_description": "Lower bound of the 95% confidence interval for pct_not_close_at_school. Weighted percentage of U.S. high school students who strongly disagreed or disagreed that they feel close to people at their school, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Other Health Topics; YRBSS question code: QNCLOSE2PEOPLE). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_not_close_at_school_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_not_close_at_school_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_not_close_at_school_ucl": { + "id": "pct_not_close_at_school_ucl", + "short_name": "Did not feel close at school - upper 95% CI", + "long_name": "YRBSS: Strongly disagreed or disagreed that they feel close to people at their school - upper bound of 95% confidence interval", + "category": "chronic", + "topic": "Other Health Topics", + "question_code": "QNCLOSE2PEOPLE", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who strongly disagreed or disagreed that they feel close to people at their school.", + "long_description": "Upper bound of the 95% confidence interval for pct_not_close_at_school. Weighted percentage of U.S. high school students who strongly disagreed or disagreed that they feel close to people at their school, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Other Health Topics; YRBSS question code: QNCLOSE2PEOPLE). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_not_close_at_school_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_not_close_at_school_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_not_close_at_school_suppressed": { + "id": "pct_not_close_at_school_suppressed", + "short_name": "Did not feel close at school - suppressed flag", + "long_name": "YRBSS: Strongly disagreed or disagreed that they feel close to people at their school - suppressed flag", + "category": "chronic", + "topic": "Other Health Topics", + "question_code": "QNCLOSE2PEOPLE", + "short_description": "1 if the estimate for 'pct_not_close_at_school' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_not_close_at_school (with its CI) was set to 0; 0 otherwise. Distinct from pct_not_close_at_school_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_not_close_at_school_not_asked": { + "id": "pct_not_close_at_school_not_asked", + "short_name": "Did not feel close at school - not-asked flag", + "long_name": "YRBSS: Strongly disagreed or disagreed that they feel close to people at their school - not-asked flag", + "category": "chronic", + "topic": "Other Health Topics", + "question_code": "QNCLOSE2PEOPLE", + "short_description": "1 if 'pct_not_close_at_school' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Strongly disagreed or disagreed that they feel close to people at their school' was not part of the YRBSS survey for this geography and year, so pct_not_close_at_school (with its CI) was set to 0; 0 otherwise. Distinct from pct_not_close_at_school_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_inactive_60min_5days": { + "id": "pct_inactive_60min_5days", + "short_name": "Inactive <5 days/wk", + "long_name": "YRBSS: Were not physically active at least 60 minutes per day on 5 or more days (Physical Activity)", + "category": "chronic", + "topic": "Physical Activity", + "question_code": "H76", + "short_description": "Percent of high school students who were not physically active at least 60 minutes per day on 5 or more days.", + "long_description": "Weighted percentage of U.S. high school students who were not physically active at least 60 minutes per day on 5 or more days, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Physical Activity; YRBSS question code: H76). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_inactive_60min_5days_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_inactive_60min_5days_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_inactive_60min_5days_lcl": { + "id": "pct_inactive_60min_5days_lcl", + "short_name": "Inactive <5 days/wk - lower 95% CI", + "long_name": "YRBSS: Were not physically active at least 60 minutes per day on 5 or more days - lower bound of 95% confidence interval", + "category": "chronic", + "topic": "Physical Activity", + "question_code": "H76", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who were not physically active at least 60 minutes per day on 5 or more days.", + "long_description": "Lower bound of the 95% confidence interval for pct_inactive_60min_5days. Weighted percentage of U.S. high school students who were not physically active at least 60 minutes per day on 5 or more days, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Physical Activity; YRBSS question code: H76). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_inactive_60min_5days_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_inactive_60min_5days_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_inactive_60min_5days_ucl": { + "id": "pct_inactive_60min_5days_ucl", + "short_name": "Inactive <5 days/wk - upper 95% CI", + "long_name": "YRBSS: Were not physically active at least 60 minutes per day on 5 or more days - upper bound of 95% confidence interval", + "category": "chronic", + "topic": "Physical Activity", + "question_code": "H76", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who were not physically active at least 60 minutes per day on 5 or more days.", + "long_description": "Upper bound of the 95% confidence interval for pct_inactive_60min_5days. Weighted percentage of U.S. high school students who were not physically active at least 60 minutes per day on 5 or more days, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Physical Activity; YRBSS question code: H76). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_inactive_60min_5days_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_inactive_60min_5days_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_inactive_60min_5days_suppressed": { + "id": "pct_inactive_60min_5days_suppressed", + "short_name": "Inactive <5 days/wk - suppressed flag", + "long_name": "YRBSS: Were not physically active at least 60 minutes per day on 5 or more days - suppressed flag", + "category": "chronic", + "topic": "Physical Activity", + "question_code": "H76", + "short_description": "1 if the estimate for 'pct_inactive_60min_5days' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_inactive_60min_5days (with its CI) was set to 0; 0 otherwise. Distinct from pct_inactive_60min_5days_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_inactive_60min_5days_not_asked": { + "id": "pct_inactive_60min_5days_not_asked", + "short_name": "Inactive <5 days/wk - not-asked flag", + "long_name": "YRBSS: Were not physically active at least 60 minutes per day on 5 or more days - not-asked flag", + "category": "chronic", + "topic": "Physical Activity", + "question_code": "H76", + "short_description": "1 if 'pct_inactive_60min_5days' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Were not physically active at least 60 minutes per day on 5 or more days' was not part of the YRBSS survey for this geography and year, so pct_inactive_60min_5days (with its CI) was set to 0; 0 otherwise. Distinct from pct_inactive_60min_5days_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_no_pe_classes": { + "id": "pct_no_pe_classes", + "short_name": "Did not attend PE classes", + "long_name": "YRBSS: Did not attend physical education (PE) classes on 1 or more days (Physical Activity)", + "category": "chronic", + "topic": "Physical Activity", + "question_code": "H77", + "short_description": "Percent of high school students who did not attend physical education (PE) classes on 1 or more days.", + "long_description": "Weighted percentage of U.S. high school students who did not attend physical education (PE) classes on 1 or more days, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Physical Activity; YRBSS question code: H77). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_no_pe_classes_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_no_pe_classes_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_no_pe_classes_lcl": { + "id": "pct_no_pe_classes_lcl", + "short_name": "Did not attend PE classes - lower 95% CI", + "long_name": "YRBSS: Did not attend physical education (PE) classes on 1 or more days - lower bound of 95% confidence interval", + "category": "chronic", + "topic": "Physical Activity", + "question_code": "H77", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who did not attend physical education (PE) classes on 1 or more days.", + "long_description": "Lower bound of the 95% confidence interval for pct_no_pe_classes. Weighted percentage of U.S. high school students who did not attend physical education (PE) classes on 1 or more days, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Physical Activity; YRBSS question code: H77). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_no_pe_classes_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_no_pe_classes_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_no_pe_classes_ucl": { + "id": "pct_no_pe_classes_ucl", + "short_name": "Did not attend PE classes - upper 95% CI", + "long_name": "YRBSS: Did not attend physical education (PE) classes on 1 or more days - upper bound of 95% confidence interval", + "category": "chronic", + "topic": "Physical Activity", + "question_code": "H77", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who did not attend physical education (PE) classes on 1 or more days.", + "long_description": "Upper bound of the 95% confidence interval for pct_no_pe_classes. Weighted percentage of U.S. high school students who did not attend physical education (PE) classes on 1 or more days, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Physical Activity; YRBSS question code: H77). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_no_pe_classes_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_no_pe_classes_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_no_pe_classes_suppressed": { + "id": "pct_no_pe_classes_suppressed", + "short_name": "Did not attend PE classes - suppressed flag", + "long_name": "YRBSS: Did not attend physical education (PE) classes on 1 or more days - suppressed flag", + "category": "chronic", + "topic": "Physical Activity", + "question_code": "H77", + "short_description": "1 if the estimate for 'pct_no_pe_classes' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_no_pe_classes (with its CI) was set to 0; 0 otherwise. Distinct from pct_no_pe_classes_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_no_pe_classes_not_asked": { + "id": "pct_no_pe_classes_not_asked", + "short_name": "Did not attend PE classes - not-asked flag", + "long_name": "YRBSS: Did not attend physical education (PE) classes on 1 or more days - not-asked flag", + "category": "chronic", + "topic": "Physical Activity", + "question_code": "H77", + "short_description": "1 if 'pct_no_pe_classes' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Did not attend physical education (PE) classes on 1 or more days' was not part of the YRBSS survey for this geography and year, so pct_no_pe_classes (with its CI) was set to 0; 0 otherwise. Distinct from pct_no_pe_classes_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_no_sports_team": { + "id": "pct_no_sports_team", + "short_name": "Did not play on a sports team", + "long_name": "YRBSS: Did not play on at least one sports team (Physical Activity)", + "category": "chronic", + "topic": "Physical Activity", + "question_code": "H78", + "short_description": "Percent of high school students who did not play on at least one sports team.", + "long_description": "Weighted percentage of U.S. high school students who did not play on at least one sports team, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Physical Activity; YRBSS question code: H78). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_no_sports_team_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_no_sports_team_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_no_sports_team_lcl": { + "id": "pct_no_sports_team_lcl", + "short_name": "Did not play on a sports team - lower 95% CI", + "long_name": "YRBSS: Did not play on at least one sports team - lower bound of 95% confidence interval", + "category": "chronic", + "topic": "Physical Activity", + "question_code": "H78", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who did not play on at least one sports team.", + "long_description": "Lower bound of the 95% confidence interval for pct_no_sports_team. Weighted percentage of U.S. high school students who did not play on at least one sports team, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Physical Activity; YRBSS question code: H78). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_no_sports_team_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_no_sports_team_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_no_sports_team_ucl": { + "id": "pct_no_sports_team_ucl", + "short_name": "Did not play on a sports team - upper 95% CI", + "long_name": "YRBSS: Did not play on at least one sports team - upper bound of 95% confidence interval", + "category": "chronic", + "topic": "Physical Activity", + "question_code": "H78", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who did not play on at least one sports team.", + "long_description": "Upper bound of the 95% confidence interval for pct_no_sports_team. Weighted percentage of U.S. high school students who did not play on at least one sports team, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Physical Activity; YRBSS question code: H78). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_no_sports_team_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_no_sports_team_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_no_sports_team_suppressed": { + "id": "pct_no_sports_team_suppressed", + "short_name": "Did not play on a sports team - suppressed flag", + "long_name": "YRBSS: Did not play on at least one sports team - suppressed flag", + "category": "chronic", + "topic": "Physical Activity", + "question_code": "H78", + "short_description": "1 if the estimate for 'pct_no_sports_team' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_no_sports_team (with its CI) was set to 0; 0 otherwise. Distinct from pct_no_sports_team_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_no_sports_team_not_asked": { + "id": "pct_no_sports_team_not_asked", + "short_name": "Did not play on a sports team - not-asked flag", + "long_name": "YRBSS: Did not play on at least one sports team - not-asked flag", + "category": "chronic", + "topic": "Physical Activity", + "question_code": "H78", + "short_description": "1 if 'pct_no_sports_team' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Did not play on at least one sports team' was not part of the YRBSS survey for this geography and year, so pct_no_sports_team (with its CI) was set to 0; 0 otherwise. Distinct from pct_no_sports_team_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_sports_concussion": { + "id": "pct_sports_concussion", + "short_name": "Concussion from sport/activity", + "long_name": "YRBSS: Had a concussion from playing a sport or being physically active (Physical Activity)", + "category": "chronic", + "topic": "Physical Activity", + "question_code": "H79", + "short_description": "Percent of high school students who had a concussion from playing a sport or being physically active.", + "long_description": "Weighted percentage of U.S. high school students who had a concussion from playing a sport or being physically active, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Physical Activity; YRBSS question code: H79). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_sports_concussion_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_sports_concussion_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_sports_concussion_lcl": { + "id": "pct_sports_concussion_lcl", + "short_name": "Concussion from sport/activity - lower 95% CI", + "long_name": "YRBSS: Had a concussion from playing a sport or being physically active - lower bound of 95% confidence interval", + "category": "chronic", + "topic": "Physical Activity", + "question_code": "H79", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who had a concussion from playing a sport or being physically active.", + "long_description": "Lower bound of the 95% confidence interval for pct_sports_concussion. Weighted percentage of U.S. high school students who had a concussion from playing a sport or being physically active, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Physical Activity; YRBSS question code: H79). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_sports_concussion_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_sports_concussion_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_sports_concussion_ucl": { + "id": "pct_sports_concussion_ucl", + "short_name": "Concussion from sport/activity - upper 95% CI", + "long_name": "YRBSS: Had a concussion from playing a sport or being physically active - upper bound of 95% confidence interval", + "category": "chronic", + "topic": "Physical Activity", + "question_code": "H79", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who had a concussion from playing a sport or being physically active.", + "long_description": "Upper bound of the 95% confidence interval for pct_sports_concussion. Weighted percentage of U.S. high school students who had a concussion from playing a sport or being physically active, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Physical Activity; YRBSS question code: H79). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_sports_concussion_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_sports_concussion_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_sports_concussion_suppressed": { + "id": "pct_sports_concussion_suppressed", + "short_name": "Concussion from sport/activity - suppressed flag", + "long_name": "YRBSS: Had a concussion from playing a sport or being physically active - suppressed flag", + "category": "chronic", + "topic": "Physical Activity", + "question_code": "H79", + "short_description": "1 if the estimate for 'pct_sports_concussion' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_sports_concussion (with its CI) was set to 0; 0 otherwise. Distinct from pct_sports_concussion_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_sports_concussion_not_asked": { + "id": "pct_sports_concussion_not_asked", + "short_name": "Concussion from sport/activity - not-asked flag", + "long_name": "YRBSS: Had a concussion from playing a sport or being physically active - not-asked flag", + "category": "chronic", + "topic": "Physical Activity", + "question_code": "H79", + "short_description": "1 if 'pct_sports_concussion' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Had a concussion from playing a sport or being physically active' was not part of the YRBSS survey for this geography and year, so pct_sports_concussion (with its CI) was set to 0; 0 otherwise. Distinct from pct_sports_concussion_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_no_daily_pe": { + "id": "pct_no_daily_pe", + "short_name": "No daily PE", + "long_name": "YRBSS: Did not attend physical education (PE) classes on all 5 days (Physical Activity)", + "category": "chronic", + "topic": "Physical Activity", + "question_code": "QNDLYPE", + "short_description": "Percent of high school students who did not attend physical education (PE) classes on all 5 days.", + "long_description": "Weighted percentage of U.S. high school students who did not attend physical education (PE) classes on all 5 days, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Physical Activity; YRBSS question code: QNDLYPE). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_no_daily_pe_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_no_daily_pe_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_no_daily_pe_lcl": { + "id": "pct_no_daily_pe_lcl", + "short_name": "No daily PE - lower 95% CI", + "long_name": "YRBSS: Did not attend physical education (PE) classes on all 5 days - lower bound of 95% confidence interval", + "category": "chronic", + "topic": "Physical Activity", + "question_code": "QNDLYPE", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who did not attend physical education (PE) classes on all 5 days.", + "long_description": "Lower bound of the 95% confidence interval for pct_no_daily_pe. Weighted percentage of U.S. high school students who did not attend physical education (PE) classes on all 5 days, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Physical Activity; YRBSS question code: QNDLYPE). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_no_daily_pe_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_no_daily_pe_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_no_daily_pe_ucl": { + "id": "pct_no_daily_pe_ucl", + "short_name": "No daily PE - upper 95% CI", + "long_name": "YRBSS: Did not attend physical education (PE) classes on all 5 days - upper bound of 95% confidence interval", + "category": "chronic", + "topic": "Physical Activity", + "question_code": "QNDLYPE", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who did not attend physical education (PE) classes on all 5 days.", + "long_description": "Upper bound of the 95% confidence interval for pct_no_daily_pe. Weighted percentage of U.S. high school students who did not attend physical education (PE) classes on all 5 days, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Physical Activity; YRBSS question code: QNDLYPE). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_no_daily_pe_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_no_daily_pe_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_no_daily_pe_suppressed": { + "id": "pct_no_daily_pe_suppressed", + "short_name": "No daily PE - suppressed flag", + "long_name": "YRBSS: Did not attend physical education (PE) classes on all 5 days - suppressed flag", + "category": "chronic", + "topic": "Physical Activity", + "question_code": "QNDLYPE", + "short_description": "1 if the estimate for 'pct_no_daily_pe' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_no_daily_pe (with its CI) was set to 0; 0 otherwise. Distinct from pct_no_daily_pe_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_no_daily_pe_not_asked": { + "id": "pct_no_daily_pe_not_asked", + "short_name": "No daily PE - not-asked flag", + "long_name": "YRBSS: Did not attend physical education (PE) classes on all 5 days - not-asked flag", + "category": "chronic", + "topic": "Physical Activity", + "question_code": "QNDLYPE", + "short_description": "1 if 'pct_no_daily_pe' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Did not attend physical education (PE) classes on all 5 days' was not part of the YRBSS survey for this geography and year, so pct_no_daily_pe (with its CI) was set to 0; 0 otherwise. Distinct from pct_no_daily_pe_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_no_muscle_strengthening": { + "id": "pct_no_muscle_strengthening", + "short_name": "No muscle strengthening", + "long_name": "YRBSS: Did not do exercises to strengthen or tone muscles on three or more days (Physical Activity)", + "category": "chronic", + "topic": "Physical Activity", + "question_code": "QNMUSCLESTRENGTH", + "short_description": "Percent of high school students who did not do exercises to strengthen or tone muscles on three or more days.", + "long_description": "Weighted percentage of U.S. high school students who did not do exercises to strengthen or tone muscles on three or more days, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Physical Activity; YRBSS question code: QNMUSCLESTRENGTH). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_no_muscle_strengthening_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_no_muscle_strengthening_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_no_muscle_strengthening_lcl": { + "id": "pct_no_muscle_strengthening_lcl", + "short_name": "No muscle strengthening - lower 95% CI", + "long_name": "YRBSS: Did not do exercises to strengthen or tone muscles on three or more days - lower bound of 95% confidence interval", + "category": "chronic", + "topic": "Physical Activity", + "question_code": "QNMUSCLESTRENGTH", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who did not do exercises to strengthen or tone muscles on three or more days.", + "long_description": "Lower bound of the 95% confidence interval for pct_no_muscle_strengthening. Weighted percentage of U.S. high school students who did not do exercises to strengthen or tone muscles on three or more days, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Physical Activity; YRBSS question code: QNMUSCLESTRENGTH). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_no_muscle_strengthening_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_no_muscle_strengthening_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_no_muscle_strengthening_ucl": { + "id": "pct_no_muscle_strengthening_ucl", + "short_name": "No muscle strengthening - upper 95% CI", + "long_name": "YRBSS: Did not do exercises to strengthen or tone muscles on three or more days - upper bound of 95% confidence interval", + "category": "chronic", + "topic": "Physical Activity", + "question_code": "QNMUSCLESTRENGTH", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who did not do exercises to strengthen or tone muscles on three or more days.", + "long_description": "Upper bound of the 95% confidence interval for pct_no_muscle_strengthening. Weighted percentage of U.S. high school students who did not do exercises to strengthen or tone muscles on three or more days, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Physical Activity; YRBSS question code: QNMUSCLESTRENGTH). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_no_muscle_strengthening_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_no_muscle_strengthening_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_no_muscle_strengthening_suppressed": { + "id": "pct_no_muscle_strengthening_suppressed", + "short_name": "No muscle strengthening - suppressed flag", + "long_name": "YRBSS: Did not do exercises to strengthen or tone muscles on three or more days - suppressed flag", + "category": "chronic", + "topic": "Physical Activity", + "question_code": "QNMUSCLESTRENGTH", + "short_description": "1 if the estimate for 'pct_no_muscle_strengthening' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_no_muscle_strengthening (with its CI) was set to 0; 0 otherwise. Distinct from pct_no_muscle_strengthening_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_no_muscle_strengthening_not_asked": { + "id": "pct_no_muscle_strengthening_not_asked", + "short_name": "No muscle strengthening - not-asked flag", + "long_name": "YRBSS: Did not do exercises to strengthen or tone muscles on three or more days - not-asked flag", + "category": "chronic", + "topic": "Physical Activity", + "question_code": "QNMUSCLESTRENGTH", + "short_description": "1 if 'pct_no_muscle_strengthening' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Did not do exercises to strengthen or tone muscles on three or more days' was not part of the YRBSS survey for this geography and year, so pct_no_muscle_strengthening (with its CI) was set to 0; 0 otherwise. Distinct from pct_no_muscle_strengthening_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_inactive_all_days": { + "id": "pct_inactive_all_days", + "short_name": "Inactive every day", + "long_name": "YRBSS: Were not physically active for at least 60 minutes on at least 1 day (Physical Activity)", + "category": "chronic", + "topic": "Physical Activity", + "question_code": "QNPA0DAY", + "short_description": "Percent of high school students who were not physically active for at least 60 minutes on at least 1 day.", + "long_description": "Weighted percentage of U.S. high school students who were not physically active for at least 60 minutes on at least 1 day, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Physical Activity; YRBSS question code: QNPA0DAY). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_inactive_all_days_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_inactive_all_days_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_inactive_all_days_lcl": { + "id": "pct_inactive_all_days_lcl", + "short_name": "Inactive every day - lower 95% CI", + "long_name": "YRBSS: Were not physically active for at least 60 minutes on at least 1 day - lower bound of 95% confidence interval", + "category": "chronic", + "topic": "Physical Activity", + "question_code": "QNPA0DAY", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who were not physically active for at least 60 minutes on at least 1 day.", + "long_description": "Lower bound of the 95% confidence interval for pct_inactive_all_days. Weighted percentage of U.S. high school students who were not physically active for at least 60 minutes on at least 1 day, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Physical Activity; YRBSS question code: QNPA0DAY). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_inactive_all_days_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_inactive_all_days_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_inactive_all_days_ucl": { + "id": "pct_inactive_all_days_ucl", + "short_name": "Inactive every day - upper 95% CI", + "long_name": "YRBSS: Were not physically active for at least 60 minutes on at least 1 day - upper bound of 95% confidence interval", + "category": "chronic", + "topic": "Physical Activity", + "question_code": "QNPA0DAY", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who were not physically active for at least 60 minutes on at least 1 day.", + "long_description": "Upper bound of the 95% confidence interval for pct_inactive_all_days. Weighted percentage of U.S. high school students who were not physically active for at least 60 minutes on at least 1 day, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Physical Activity; YRBSS question code: QNPA0DAY). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_inactive_all_days_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_inactive_all_days_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_inactive_all_days_suppressed": { + "id": "pct_inactive_all_days_suppressed", + "short_name": "Inactive every day - suppressed flag", + "long_name": "YRBSS: Were not physically active for at least 60 minutes on at least 1 day - suppressed flag", + "category": "chronic", + "topic": "Physical Activity", + "question_code": "QNPA0DAY", + "short_description": "1 if the estimate for 'pct_inactive_all_days' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_inactive_all_days (with its CI) was set to 0; 0 otherwise. Distinct from pct_inactive_all_days_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_inactive_all_days_not_asked": { + "id": "pct_inactive_all_days_not_asked", + "short_name": "Inactive every day - not-asked flag", + "long_name": "YRBSS: Were not physically active for at least 60 minutes on at least 1 day - not-asked flag", + "category": "chronic", + "topic": "Physical Activity", + "question_code": "QNPA0DAY", + "short_description": "1 if 'pct_inactive_all_days' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Were not physically active for at least 60 minutes on at least 1 day' was not part of the YRBSS survey for this geography and year, so pct_inactive_all_days (with its CI) was set to 0; 0 otherwise. Distinct from pct_inactive_all_days_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_inactive_60min_7days": { + "id": "pct_inactive_60min_7days", + "short_name": "Inactive <7 days/wk", + "long_name": "YRBSS: Were not physically active at least 60 minutes per day on all 7 days (Physical Activity)", + "category": "chronic", + "topic": "Physical Activity", + "question_code": "QNPA7DAY", + "short_description": "Percent of high school students who were not physically active at least 60 minutes per day on all 7 days.", + "long_description": "Weighted percentage of U.S. high school students who were not physically active at least 60 minutes per day on all 7 days, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Physical Activity; YRBSS question code: QNPA7DAY). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_inactive_60min_7days_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_inactive_60min_7days_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_inactive_60min_7days_lcl": { + "id": "pct_inactive_60min_7days_lcl", + "short_name": "Inactive <7 days/wk - lower 95% CI", + "long_name": "YRBSS: Were not physically active at least 60 minutes per day on all 7 days - lower bound of 95% confidence interval", + "category": "chronic", + "topic": "Physical Activity", + "question_code": "QNPA7DAY", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who were not physically active at least 60 minutes per day on all 7 days.", + "long_description": "Lower bound of the 95% confidence interval for pct_inactive_60min_7days. Weighted percentage of U.S. high school students who were not physically active at least 60 minutes per day on all 7 days, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Physical Activity; YRBSS question code: QNPA7DAY). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_inactive_60min_7days_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_inactive_60min_7days_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_inactive_60min_7days_ucl": { + "id": "pct_inactive_60min_7days_ucl", + "short_name": "Inactive <7 days/wk - upper 95% CI", + "long_name": "YRBSS: Were not physically active at least 60 minutes per day on all 7 days - upper bound of 95% confidence interval", + "category": "chronic", + "topic": "Physical Activity", + "question_code": "QNPA7DAY", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who were not physically active at least 60 minutes per day on all 7 days.", + "long_description": "Upper bound of the 95% confidence interval for pct_inactive_60min_7days. Weighted percentage of U.S. high school students who were not physically active at least 60 minutes per day on all 7 days, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Physical Activity; YRBSS question code: QNPA7DAY). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_inactive_60min_7days_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_inactive_60min_7days_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_inactive_60min_7days_suppressed": { + "id": "pct_inactive_60min_7days_suppressed", + "short_name": "Inactive <7 days/wk - suppressed flag", + "long_name": "YRBSS: Were not physically active at least 60 minutes per day on all 7 days - suppressed flag", + "category": "chronic", + "topic": "Physical Activity", + "question_code": "QNPA7DAY", + "short_description": "1 if the estimate for 'pct_inactive_60min_7days' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_inactive_60min_7days (with its CI) was set to 0; 0 otherwise. Distinct from pct_inactive_60min_7days_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_inactive_60min_7days_not_asked": { + "id": "pct_inactive_60min_7days_not_asked", + "short_name": "Inactive <7 days/wk - not-asked flag", + "long_name": "YRBSS: Were not physically active at least 60 minutes per day on all 7 days - not-asked flag", + "category": "chronic", + "topic": "Physical Activity", + "question_code": "QNPA7DAY", + "short_description": "1 if 'pct_inactive_60min_7days' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Were not physically active at least 60 minutes per day on all 7 days' was not part of the YRBSS survey for this geography and year, so pct_inactive_60min_7days (with its CI) was set to 0; 0 otherwise. Distinct from pct_inactive_60min_7days_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_cigarette": { + "id": "pct_ever_cigarette", + "short_name": "Ever smoked a cigarette", + "long_name": "YRBSS: Ever smoked a cigarette (Tobacco Use)", + "category": "chronic", + "topic": "Tobacco Use", + "question_code": "H31", + "short_description": "Percent of high school students who ever smoked a cigarette.", + "long_description": "Weighted percentage of U.S. high school students who ever smoked a cigarette, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Tobacco Use; YRBSS question code: H31). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_ever_cigarette_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_ever_cigarette_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_cigarette_lcl": { + "id": "pct_ever_cigarette_lcl", + "short_name": "Ever smoked a cigarette - lower 95% CI", + "long_name": "YRBSS: Ever smoked a cigarette - lower bound of 95% confidence interval", + "category": "chronic", + "topic": "Tobacco Use", + "question_code": "H31", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who ever smoked a cigarette.", + "long_description": "Lower bound of the 95% confidence interval for pct_ever_cigarette. Weighted percentage of U.S. high school students who ever smoked a cigarette, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Tobacco Use; YRBSS question code: H31). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_ever_cigarette_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_ever_cigarette_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_cigarette_ucl": { + "id": "pct_ever_cigarette_ucl", + "short_name": "Ever smoked a cigarette - upper 95% CI", + "long_name": "YRBSS: Ever smoked a cigarette - upper bound of 95% confidence interval", + "category": "chronic", + "topic": "Tobacco Use", + "question_code": "H31", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who ever smoked a cigarette.", + "long_description": "Upper bound of the 95% confidence interval for pct_ever_cigarette. Weighted percentage of U.S. high school students who ever smoked a cigarette, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Tobacco Use; YRBSS question code: H31). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_ever_cigarette_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_ever_cigarette_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_cigarette_suppressed": { + "id": "pct_ever_cigarette_suppressed", + "short_name": "Ever smoked a cigarette - suppressed flag", + "long_name": "YRBSS: Ever smoked a cigarette - suppressed flag", + "category": "chronic", + "topic": "Tobacco Use", + "question_code": "H31", + "short_description": "1 if the estimate for 'pct_ever_cigarette' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_ever_cigarette (with its CI) was set to 0; 0 otherwise. Distinct from pct_ever_cigarette_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_cigarette_not_asked": { + "id": "pct_ever_cigarette_not_asked", + "short_name": "Ever smoked a cigarette - not-asked flag", + "long_name": "YRBSS: Ever smoked a cigarette - not-asked flag", + "category": "chronic", + "topic": "Tobacco Use", + "question_code": "H31", + "short_description": "1 if 'pct_ever_cigarette' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Ever smoked a cigarette' was not part of the YRBSS survey for this geography and year, so pct_ever_cigarette (with its CI) was set to 0; 0 otherwise. Distinct from pct_ever_cigarette_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_current_cigarette": { + "id": "pct_current_cigarette", + "short_name": "Currently smoked cigarettes", + "long_name": "YRBSS: Currently smoked cigarettes (Tobacco Use)", + "category": "chronic", + "topic": "Tobacco Use", + "question_code": "H33", + "short_description": "Percent of high school students who currently smoked cigarettes.", + "long_description": "Weighted percentage of U.S. high school students who currently smoked cigarettes, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Tobacco Use; YRBSS question code: H33). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_current_cigarette_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_current_cigarette_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_current_cigarette_lcl": { + "id": "pct_current_cigarette_lcl", + "short_name": "Currently smoked cigarettes - lower 95% CI", + "long_name": "YRBSS: Currently smoked cigarettes - lower bound of 95% confidence interval", + "category": "chronic", + "topic": "Tobacco Use", + "question_code": "H33", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who currently smoked cigarettes.", + "long_description": "Lower bound of the 95% confidence interval for pct_current_cigarette. Weighted percentage of U.S. high school students who currently smoked cigarettes, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Tobacco Use; YRBSS question code: H33). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_current_cigarette_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_current_cigarette_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_current_cigarette_ucl": { + "id": "pct_current_cigarette_ucl", + "short_name": "Currently smoked cigarettes - upper 95% CI", + "long_name": "YRBSS: Currently smoked cigarettes - upper bound of 95% confidence interval", + "category": "chronic", + "topic": "Tobacco Use", + "question_code": "H33", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who currently smoked cigarettes.", + "long_description": "Upper bound of the 95% confidence interval for pct_current_cigarette. Weighted percentage of U.S. high school students who currently smoked cigarettes, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Tobacco Use; YRBSS question code: H33). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_current_cigarette_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_current_cigarette_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_current_cigarette_suppressed": { + "id": "pct_current_cigarette_suppressed", + "short_name": "Currently smoked cigarettes - suppressed flag", + "long_name": "YRBSS: Currently smoked cigarettes - suppressed flag", + "category": "chronic", + "topic": "Tobacco Use", + "question_code": "H33", + "short_description": "1 if the estimate for 'pct_current_cigarette' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_current_cigarette (with its CI) was set to 0; 0 otherwise. Distinct from pct_current_cigarette_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_current_cigarette_not_asked": { + "id": "pct_current_cigarette_not_asked", + "short_name": "Currently smoked cigarettes - not-asked flag", + "long_name": "YRBSS: Currently smoked cigarettes - not-asked flag", + "category": "chronic", + "topic": "Tobacco Use", + "question_code": "H33", + "short_description": "1 if 'pct_current_cigarette' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Currently smoked cigarettes' was not part of the YRBSS survey for this geography and year, so pct_current_cigarette (with its CI) was set to 0; 0 otherwise. Distinct from pct_current_cigarette_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_vape": { + "id": "pct_ever_vape", + "short_name": "Ever used vapor products", + "long_name": "YRBSS: Ever used electronic vapor products (Tobacco Use)", + "category": "chronic", + "topic": "Tobacco Use", + "question_code": "H35", + "short_description": "Percent of high school students who ever used electronic vapor products.", + "long_description": "Weighted percentage of U.S. high school students who ever used electronic vapor products, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Tobacco Use; YRBSS question code: H35). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_ever_vape_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_ever_vape_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_vape_lcl": { + "id": "pct_ever_vape_lcl", + "short_name": "Ever used vapor products - lower 95% CI", + "long_name": "YRBSS: Ever used electronic vapor products - lower bound of 95% confidence interval", + "category": "chronic", + "topic": "Tobacco Use", + "question_code": "H35", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who ever used electronic vapor products.", + "long_description": "Lower bound of the 95% confidence interval for pct_ever_vape. Weighted percentage of U.S. high school students who ever used electronic vapor products, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Tobacco Use; YRBSS question code: H35). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_ever_vape_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_ever_vape_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_vape_ucl": { + "id": "pct_ever_vape_ucl", + "short_name": "Ever used vapor products - upper 95% CI", + "long_name": "YRBSS: Ever used electronic vapor products - upper bound of 95% confidence interval", + "category": "chronic", + "topic": "Tobacco Use", + "question_code": "H35", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who ever used electronic vapor products.", + "long_description": "Upper bound of the 95% confidence interval for pct_ever_vape. Weighted percentage of U.S. high school students who ever used electronic vapor products, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Tobacco Use; YRBSS question code: H35). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_ever_vape_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_ever_vape_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_vape_suppressed": { + "id": "pct_ever_vape_suppressed", + "short_name": "Ever used vapor products - suppressed flag", + "long_name": "YRBSS: Ever used electronic vapor products - suppressed flag", + "category": "chronic", + "topic": "Tobacco Use", + "question_code": "H35", + "short_description": "1 if the estimate for 'pct_ever_vape' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_ever_vape (with its CI) was set to 0; 0 otherwise. Distinct from pct_ever_vape_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_ever_vape_not_asked": { + "id": "pct_ever_vape_not_asked", + "short_name": "Ever used vapor products - not-asked flag", + "long_name": "YRBSS: Ever used electronic vapor products - not-asked flag", + "category": "chronic", + "topic": "Tobacco Use", + "question_code": "H35", + "short_description": "1 if 'pct_ever_vape' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Ever used electronic vapor products' was not part of the YRBSS survey for this geography and year, so pct_ever_vape (with its CI) was set to 0; 0 otherwise. Distinct from pct_ever_vape_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_current_vape": { + "id": "pct_current_vape", + "short_name": "Currently used vapor products", + "long_name": "YRBSS: Currently used electronic vapor products (Tobacco Use)", + "category": "chronic", + "topic": "Tobacco Use", + "question_code": "H36", + "short_description": "Percent of high school students who currently used electronic vapor products.", + "long_description": "Weighted percentage of U.S. high school students who currently used electronic vapor products, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Tobacco Use; YRBSS question code: H36). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_current_vape_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_current_vape_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_current_vape_lcl": { + "id": "pct_current_vape_lcl", + "short_name": "Currently used vapor products - lower 95% CI", + "long_name": "YRBSS: Currently used electronic vapor products - lower bound of 95% confidence interval", + "category": "chronic", + "topic": "Tobacco Use", + "question_code": "H36", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who currently used electronic vapor products.", + "long_description": "Lower bound of the 95% confidence interval for pct_current_vape. Weighted percentage of U.S. high school students who currently used electronic vapor products, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Tobacco Use; YRBSS question code: H36). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_current_vape_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_current_vape_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_current_vape_ucl": { + "id": "pct_current_vape_ucl", + "short_name": "Currently used vapor products - upper 95% CI", + "long_name": "YRBSS: Currently used electronic vapor products - upper bound of 95% confidence interval", + "category": "chronic", + "topic": "Tobacco Use", + "question_code": "H36", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who currently used electronic vapor products.", + "long_description": "Upper bound of the 95% confidence interval for pct_current_vape. Weighted percentage of U.S. high school students who currently used electronic vapor products, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Tobacco Use; YRBSS question code: H36). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_current_vape_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_current_vape_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_current_vape_suppressed": { + "id": "pct_current_vape_suppressed", + "short_name": "Currently used vapor products - suppressed flag", + "long_name": "YRBSS: Currently used electronic vapor products - suppressed flag", + "category": "chronic", + "topic": "Tobacco Use", + "question_code": "H36", + "short_description": "1 if the estimate for 'pct_current_vape' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_current_vape (with its CI) was set to 0; 0 otherwise. Distinct from pct_current_vape_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_current_vape_not_asked": { + "id": "pct_current_vape_not_asked", + "short_name": "Currently used vapor products - not-asked flag", + "long_name": "YRBSS: Currently used electronic vapor products - not-asked flag", + "category": "chronic", + "topic": "Tobacco Use", + "question_code": "H36", + "short_description": "1 if 'pct_current_vape' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Currently used electronic vapor products' was not part of the YRBSS survey for this geography and year, so pct_current_vape (with its CI) was set to 0; 0 otherwise. Distinct from pct_current_vape_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_current_smokeless_tobacco": { + "id": "pct_current_smokeless_tobacco", + "short_name": "Currently used smokeless tobacco", + "long_name": "YRBSS: Currently used smokeless tobacco (Tobacco Use)", + "category": "chronic", + "topic": "Tobacco Use", + "question_code": "H38", + "short_description": "Percent of high school students who currently used smokeless tobacco.", + "long_description": "Weighted percentage of U.S. high school students who currently used smokeless tobacco, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Tobacco Use; YRBSS question code: H38). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_current_smokeless_tobacco_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_current_smokeless_tobacco_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_current_smokeless_tobacco_lcl": { + "id": "pct_current_smokeless_tobacco_lcl", + "short_name": "Currently used smokeless tobacco - lower 95% CI", + "long_name": "YRBSS: Currently used smokeless tobacco - lower bound of 95% confidence interval", + "category": "chronic", + "topic": "Tobacco Use", + "question_code": "H38", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who currently used smokeless tobacco.", + "long_description": "Lower bound of the 95% confidence interval for pct_current_smokeless_tobacco. Weighted percentage of U.S. high school students who currently used smokeless tobacco, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Tobacco Use; YRBSS question code: H38). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_current_smokeless_tobacco_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_current_smokeless_tobacco_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_current_smokeless_tobacco_ucl": { + "id": "pct_current_smokeless_tobacco_ucl", + "short_name": "Currently used smokeless tobacco - upper 95% CI", + "long_name": "YRBSS: Currently used smokeless tobacco - upper bound of 95% confidence interval", + "category": "chronic", + "topic": "Tobacco Use", + "question_code": "H38", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who currently used smokeless tobacco.", + "long_description": "Upper bound of the 95% confidence interval for pct_current_smokeless_tobacco. Weighted percentage of U.S. high school students who currently used smokeless tobacco, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Tobacco Use; YRBSS question code: H38). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_current_smokeless_tobacco_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_current_smokeless_tobacco_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_current_smokeless_tobacco_suppressed": { + "id": "pct_current_smokeless_tobacco_suppressed", + "short_name": "Currently used smokeless tobacco - suppressed flag", + "long_name": "YRBSS: Currently used smokeless tobacco - suppressed flag", + "category": "chronic", + "topic": "Tobacco Use", + "question_code": "H38", + "short_description": "1 if the estimate for 'pct_current_smokeless_tobacco' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_current_smokeless_tobacco (with its CI) was set to 0; 0 otherwise. Distinct from pct_current_smokeless_tobacco_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_current_smokeless_tobacco_not_asked": { + "id": "pct_current_smokeless_tobacco_not_asked", + "short_name": "Currently used smokeless tobacco - not-asked flag", + "long_name": "YRBSS: Currently used smokeless tobacco - not-asked flag", + "category": "chronic", + "topic": "Tobacco Use", + "question_code": "H38", + "short_description": "1 if 'pct_current_smokeless_tobacco' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Currently used smokeless tobacco' was not part of the YRBSS survey for this geography and year, so pct_current_smokeless_tobacco (with its CI) was set to 0; 0 otherwise. Distinct from pct_current_smokeless_tobacco_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_drove_drinking": { + "id": "pct_drove_drinking", + "short_name": "Drove after drinking alcohol", + "long_name": "YRBSS: Drove when they had been drinking alcohol (Unintentional Injuries and Violence)", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H10", + "short_description": "Percent of high school students who drove when they had been drinking alcohol.", + "long_description": "Weighted percentage of U.S. high school students who drove when they had been drinking alcohol, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Unintentional Injuries and Violence; YRBSS question code: H10). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_drove_drinking_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_drove_drinking_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_drove_drinking_lcl": { + "id": "pct_drove_drinking_lcl", + "short_name": "Drove after drinking alcohol - lower 95% CI", + "long_name": "YRBSS: Drove when they had been drinking alcohol - lower bound of 95% confidence interval", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H10", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who drove when they had been drinking alcohol.", + "long_description": "Lower bound of the 95% confidence interval for pct_drove_drinking. Weighted percentage of U.S. high school students who drove when they had been drinking alcohol, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Unintentional Injuries and Violence; YRBSS question code: H10). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_drove_drinking_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_drove_drinking_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_drove_drinking_ucl": { + "id": "pct_drove_drinking_ucl", + "short_name": "Drove after drinking alcohol - upper 95% CI", + "long_name": "YRBSS: Drove when they had been drinking alcohol - upper bound of 95% confidence interval", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H10", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who drove when they had been drinking alcohol.", + "long_description": "Upper bound of the 95% confidence interval for pct_drove_drinking. Weighted percentage of U.S. high school students who drove when they had been drinking alcohol, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Unintentional Injuries and Violence; YRBSS question code: H10). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_drove_drinking_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_drove_drinking_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_drove_drinking_suppressed": { + "id": "pct_drove_drinking_suppressed", + "short_name": "Drove after drinking alcohol - suppressed flag", + "long_name": "YRBSS: Drove when they had been drinking alcohol - suppressed flag", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H10", + "short_description": "1 if the estimate for 'pct_drove_drinking' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_drove_drinking (with its CI) was set to 0; 0 otherwise. Distinct from pct_drove_drinking_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_drove_drinking_not_asked": { + "id": "pct_drove_drinking_not_asked", + "short_name": "Drove after drinking alcohol - not-asked flag", + "long_name": "YRBSS: Drove when they had been drinking alcohol - not-asked flag", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H10", + "short_description": "1 if 'pct_drove_drinking' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Drove when they had been drinking alcohol' was not part of the YRBSS survey for this geography and year, so pct_drove_drinking (with its CI) was set to 0; 0 otherwise. Distinct from pct_drove_drinking_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_text_while_driving": { + "id": "pct_text_while_driving", + "short_name": "Texted/e-mailed while driving", + "long_name": "YRBSS: Texted or e-mailed while driving a car or other vehicle (Unintentional Injuries and Violence)", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H11", + "short_description": "Percent of high school students who texted or e-mailed while driving a car or other vehicle.", + "long_description": "Weighted percentage of U.S. high school students who texted or e-mailed while driving a car or other vehicle, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Unintentional Injuries and Violence; YRBSS question code: H11). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_text_while_driving_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_text_while_driving_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_text_while_driving_lcl": { + "id": "pct_text_while_driving_lcl", + "short_name": "Texted/e-mailed while driving - lower 95% CI", + "long_name": "YRBSS: Texted or e-mailed while driving a car or other vehicle - lower bound of 95% confidence interval", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H11", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who texted or e-mailed while driving a car or other vehicle.", + "long_description": "Lower bound of the 95% confidence interval for pct_text_while_driving. Weighted percentage of U.S. high school students who texted or e-mailed while driving a car or other vehicle, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Unintentional Injuries and Violence; YRBSS question code: H11). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_text_while_driving_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_text_while_driving_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_text_while_driving_ucl": { + "id": "pct_text_while_driving_ucl", + "short_name": "Texted/e-mailed while driving - upper 95% CI", + "long_name": "YRBSS: Texted or e-mailed while driving a car or other vehicle - upper bound of 95% confidence interval", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H11", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who texted or e-mailed while driving a car or other vehicle.", + "long_description": "Upper bound of the 95% confidence interval for pct_text_while_driving. Weighted percentage of U.S. high school students who texted or e-mailed while driving a car or other vehicle, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Unintentional Injuries and Violence; YRBSS question code: H11). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_text_while_driving_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_text_while_driving_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_text_while_driving_suppressed": { + "id": "pct_text_while_driving_suppressed", + "short_name": "Texted/e-mailed while driving - suppressed flag", + "long_name": "YRBSS: Texted or e-mailed while driving a car or other vehicle - suppressed flag", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H11", + "short_description": "1 if the estimate for 'pct_text_while_driving' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_text_while_driving (with its CI) was set to 0; 0 otherwise. Distinct from pct_text_while_driving_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_text_while_driving_not_asked": { + "id": "pct_text_while_driving_not_asked", + "short_name": "Texted/e-mailed while driving - not-asked flag", + "long_name": "YRBSS: Texted or e-mailed while driving a car or other vehicle - not-asked flag", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H11", + "short_description": "1 if 'pct_text_while_driving' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Texted or e-mailed while driving a car or other vehicle' was not part of the YRBSS survey for this geography and year, so pct_text_while_driving (with its CI) was set to 0; 0 otherwise. Distinct from pct_text_while_driving_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_carried_weapon_school": { + "id": "pct_carried_weapon_school", + "short_name": "Carried a weapon at school", + "long_name": "YRBSS: Carried a weapon on school property (Unintentional Injuries and Violence)", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H12", + "short_description": "Percent of high school students who carried a weapon on school property.", + "long_description": "Weighted percentage of U.S. high school students who carried a weapon on school property, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Unintentional Injuries and Violence; YRBSS question code: H12). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_carried_weapon_school_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_carried_weapon_school_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_carried_weapon_school_lcl": { + "id": "pct_carried_weapon_school_lcl", + "short_name": "Carried a weapon at school - lower 95% CI", + "long_name": "YRBSS: Carried a weapon on school property - lower bound of 95% confidence interval", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H12", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who carried a weapon on school property.", + "long_description": "Lower bound of the 95% confidence interval for pct_carried_weapon_school. Weighted percentage of U.S. high school students who carried a weapon on school property, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Unintentional Injuries and Violence; YRBSS question code: H12). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_carried_weapon_school_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_carried_weapon_school_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_carried_weapon_school_ucl": { + "id": "pct_carried_weapon_school_ucl", + "short_name": "Carried a weapon at school - upper 95% CI", + "long_name": "YRBSS: Carried a weapon on school property - upper bound of 95% confidence interval", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H12", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who carried a weapon on school property.", + "long_description": "Upper bound of the 95% confidence interval for pct_carried_weapon_school. Weighted percentage of U.S. high school students who carried a weapon on school property, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Unintentional Injuries and Violence; YRBSS question code: H12). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_carried_weapon_school_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_carried_weapon_school_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_carried_weapon_school_suppressed": { + "id": "pct_carried_weapon_school_suppressed", + "short_name": "Carried a weapon at school - suppressed flag", + "long_name": "YRBSS: Carried a weapon on school property - suppressed flag", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H12", + "short_description": "1 if the estimate for 'pct_carried_weapon_school' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_carried_weapon_school (with its CI) was set to 0; 0 otherwise. Distinct from pct_carried_weapon_school_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_carried_weapon_school_not_asked": { + "id": "pct_carried_weapon_school_not_asked", + "short_name": "Carried a weapon at school - not-asked flag", + "long_name": "YRBSS: Carried a weapon on school property - not-asked flag", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H12", + "short_description": "1 if 'pct_carried_weapon_school' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Carried a weapon on school property' was not part of the YRBSS survey for this geography and year, so pct_carried_weapon_school (with its CI) was set to 0; 0 otherwise. Distinct from pct_carried_weapon_school_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_carried_gun": { + "id": "pct_carried_gun", + "short_name": "Carried a gun", + "long_name": "YRBSS: Carried a gun (Unintentional Injuries and Violence)", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H13", + "short_description": "Percent of high school students who carried a gun.", + "long_description": "Weighted percentage of U.S. high school students who carried a gun, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Unintentional Injuries and Violence; YRBSS question code: H13). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_carried_gun_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_carried_gun_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_carried_gun_lcl": { + "id": "pct_carried_gun_lcl", + "short_name": "Carried a gun - lower 95% CI", + "long_name": "YRBSS: Carried a gun - lower bound of 95% confidence interval", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H13", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who carried a gun.", + "long_description": "Lower bound of the 95% confidence interval for pct_carried_gun. Weighted percentage of U.S. high school students who carried a gun, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Unintentional Injuries and Violence; YRBSS question code: H13). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_carried_gun_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_carried_gun_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_carried_gun_ucl": { + "id": "pct_carried_gun_ucl", + "short_name": "Carried a gun - upper 95% CI", + "long_name": "YRBSS: Carried a gun - upper bound of 95% confidence interval", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H13", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who carried a gun.", + "long_description": "Upper bound of the 95% confidence interval for pct_carried_gun. Weighted percentage of U.S. high school students who carried a gun, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Unintentional Injuries and Violence; YRBSS question code: H13). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_carried_gun_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_carried_gun_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_carried_gun_suppressed": { + "id": "pct_carried_gun_suppressed", + "short_name": "Carried a gun - suppressed flag", + "long_name": "YRBSS: Carried a gun - suppressed flag", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H13", + "short_description": "1 if the estimate for 'pct_carried_gun' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_carried_gun (with its CI) was set to 0; 0 otherwise. Distinct from pct_carried_gun_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_carried_gun_not_asked": { + "id": "pct_carried_gun_not_asked", + "short_name": "Carried a gun - not-asked flag", + "long_name": "YRBSS: Carried a gun - not-asked flag", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H13", + "short_description": "1 if 'pct_carried_gun' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Carried a gun' was not part of the YRBSS survey for this geography and year, so pct_carried_gun (with its CI) was set to 0; 0 otherwise. Distinct from pct_carried_gun_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_unsafe_at_school": { + "id": "pct_unsafe_at_school", + "short_name": "Did not go to school, unsafe", + "long_name": "YRBSS: Did not go to school because they felt unsafe at school or on their way to or from school (Unintentional Injuries and Violence)", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H14", + "short_description": "Percent of high school students who did not go to school because they felt unsafe at school or on their way to or from school.", + "long_description": "Weighted percentage of U.S. high school students who did not go to school because they felt unsafe at school or on their way to or from school, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Unintentional Injuries and Violence; YRBSS question code: H14). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_unsafe_at_school_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_unsafe_at_school_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_unsafe_at_school_lcl": { + "id": "pct_unsafe_at_school_lcl", + "short_name": "Did not go to school, unsafe - lower 95% CI", + "long_name": "YRBSS: Did not go to school because they felt unsafe at school or on their way to or from school - lower bound of 95% confidence interval", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H14", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who did not go to school because they felt unsafe at school or on their way to or from school.", + "long_description": "Lower bound of the 95% confidence interval for pct_unsafe_at_school. Weighted percentage of U.S. high school students who did not go to school because they felt unsafe at school or on their way to or from school, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Unintentional Injuries and Violence; YRBSS question code: H14). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_unsafe_at_school_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_unsafe_at_school_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_unsafe_at_school_ucl": { + "id": "pct_unsafe_at_school_ucl", + "short_name": "Did not go to school, unsafe - upper 95% CI", + "long_name": "YRBSS: Did not go to school because they felt unsafe at school or on their way to or from school - upper bound of 95% confidence interval", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H14", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who did not go to school because they felt unsafe at school or on their way to or from school.", + "long_description": "Upper bound of the 95% confidence interval for pct_unsafe_at_school. Weighted percentage of U.S. high school students who did not go to school because they felt unsafe at school or on their way to or from school, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Unintentional Injuries and Violence; YRBSS question code: H14). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_unsafe_at_school_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_unsafe_at_school_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_unsafe_at_school_suppressed": { + "id": "pct_unsafe_at_school_suppressed", + "short_name": "Did not go to school, unsafe - suppressed flag", + "long_name": "YRBSS: Did not go to school because they felt unsafe at school or on their way to or from school - suppressed flag", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H14", + "short_description": "1 if the estimate for 'pct_unsafe_at_school' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_unsafe_at_school (with its CI) was set to 0; 0 otherwise. Distinct from pct_unsafe_at_school_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_unsafe_at_school_not_asked": { + "id": "pct_unsafe_at_school_not_asked", + "short_name": "Did not go to school, unsafe - not-asked flag", + "long_name": "YRBSS: Did not go to school because they felt unsafe at school or on their way to or from school - not-asked flag", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H14", + "short_description": "1 if 'pct_unsafe_at_school' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Did not go to school because they felt unsafe at school or on their way to or from school' was not part of the YRBSS survey for this geography and year, so pct_unsafe_at_school (with its CI) was set to 0; 0 otherwise. Distinct from pct_unsafe_at_school_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_threatened_weapon_school": { + "id": "pct_threatened_weapon_school", + "short_name": "Threatened with weapon at school", + "long_name": "YRBSS: Were threatened or injured with a weapon on school property (Unintentional Injuries and Violence)", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H15", + "short_description": "Percent of high school students who were threatened or injured with a weapon on school property.", + "long_description": "Weighted percentage of U.S. high school students who were threatened or injured with a weapon on school property, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Unintentional Injuries and Violence; YRBSS question code: H15). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_threatened_weapon_school_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_threatened_weapon_school_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_threatened_weapon_school_lcl": { + "id": "pct_threatened_weapon_school_lcl", + "short_name": "Threatened with weapon at school - lower 95% CI", + "long_name": "YRBSS: Were threatened or injured with a weapon on school property - lower bound of 95% confidence interval", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H15", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who were threatened or injured with a weapon on school property.", + "long_description": "Lower bound of the 95% confidence interval for pct_threatened_weapon_school. Weighted percentage of U.S. high school students who were threatened or injured with a weapon on school property, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Unintentional Injuries and Violence; YRBSS question code: H15). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_threatened_weapon_school_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_threatened_weapon_school_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_threatened_weapon_school_ucl": { + "id": "pct_threatened_weapon_school_ucl", + "short_name": "Threatened with weapon at school - upper 95% CI", + "long_name": "YRBSS: Were threatened or injured with a weapon on school property - upper bound of 95% confidence interval", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H15", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who were threatened or injured with a weapon on school property.", + "long_description": "Upper bound of the 95% confidence interval for pct_threatened_weapon_school. Weighted percentage of U.S. high school students who were threatened or injured with a weapon on school property, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Unintentional Injuries and Violence; YRBSS question code: H15). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_threatened_weapon_school_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_threatened_weapon_school_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_threatened_weapon_school_suppressed": { + "id": "pct_threatened_weapon_school_suppressed", + "short_name": "Threatened with weapon at school - suppressed flag", + "long_name": "YRBSS: Were threatened or injured with a weapon on school property - suppressed flag", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H15", + "short_description": "1 if the estimate for 'pct_threatened_weapon_school' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_threatened_weapon_school (with its CI) was set to 0; 0 otherwise. Distinct from pct_threatened_weapon_school_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_threatened_weapon_school_not_asked": { + "id": "pct_threatened_weapon_school_not_asked", + "short_name": "Threatened with weapon at school - not-asked flag", + "long_name": "YRBSS: Were threatened or injured with a weapon on school property - not-asked flag", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H15", + "short_description": "1 if 'pct_threatened_weapon_school' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Were threatened or injured with a weapon on school property' was not part of the YRBSS survey for this geography and year, so pct_threatened_weapon_school (with its CI) was set to 0; 0 otherwise. Distinct from pct_threatened_weapon_school_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_bullied_at_school": { + "id": "pct_bullied_at_school", + "short_name": "Bullied on school property", + "long_name": "YRBSS: Were bullied on school property (Unintentional Injuries and Violence)", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H24", + "short_description": "Percent of high school students who were bullied on school property.", + "long_description": "Weighted percentage of U.S. high school students who were bullied on school property, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Unintentional Injuries and Violence; YRBSS question code: H24). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_bullied_at_school_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_bullied_at_school_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_bullied_at_school_lcl": { + "id": "pct_bullied_at_school_lcl", + "short_name": "Bullied on school property - lower 95% CI", + "long_name": "YRBSS: Were bullied on school property - lower bound of 95% confidence interval", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H24", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who were bullied on school property.", + "long_description": "Lower bound of the 95% confidence interval for pct_bullied_at_school. Weighted percentage of U.S. high school students who were bullied on school property, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Unintentional Injuries and Violence; YRBSS question code: H24). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_bullied_at_school_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_bullied_at_school_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_bullied_at_school_ucl": { + "id": "pct_bullied_at_school_ucl", + "short_name": "Bullied on school property - upper 95% CI", + "long_name": "YRBSS: Were bullied on school property - upper bound of 95% confidence interval", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H24", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who were bullied on school property.", + "long_description": "Upper bound of the 95% confidence interval for pct_bullied_at_school. Weighted percentage of U.S. high school students who were bullied on school property, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Unintentional Injuries and Violence; YRBSS question code: H24). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_bullied_at_school_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_bullied_at_school_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_bullied_at_school_suppressed": { + "id": "pct_bullied_at_school_suppressed", + "short_name": "Bullied on school property - suppressed flag", + "long_name": "YRBSS: Were bullied on school property - suppressed flag", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H24", + "short_description": "1 if the estimate for 'pct_bullied_at_school' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_bullied_at_school (with its CI) was set to 0; 0 otherwise. Distinct from pct_bullied_at_school_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_bullied_at_school_not_asked": { + "id": "pct_bullied_at_school_not_asked", + "short_name": "Bullied on school property - not-asked flag", + "long_name": "YRBSS: Were bullied on school property - not-asked flag", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H24", + "short_description": "1 if 'pct_bullied_at_school' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Were bullied on school property' was not part of the YRBSS survey for this geography and year, so pct_bullied_at_school (with its CI) was set to 0; 0 otherwise. Distinct from pct_bullied_at_school_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_bullied_electronic": { + "id": "pct_bullied_electronic", + "short_name": "Electronically bullied", + "long_name": "YRBSS: Were electronically bullied (Unintentional Injuries and Violence)", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H25", + "short_description": "Percent of high school students who were electronically bullied.", + "long_description": "Weighted percentage of U.S. high school students who were electronically bullied, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Unintentional Injuries and Violence; YRBSS question code: H25). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_bullied_electronic_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_bullied_electronic_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_bullied_electronic_lcl": { + "id": "pct_bullied_electronic_lcl", + "short_name": "Electronically bullied - lower 95% CI", + "long_name": "YRBSS: Were electronically bullied - lower bound of 95% confidence interval", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H25", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who were electronically bullied.", + "long_description": "Lower bound of the 95% confidence interval for pct_bullied_electronic. Weighted percentage of U.S. high school students who were electronically bullied, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Unintentional Injuries and Violence; YRBSS question code: H25). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_bullied_electronic_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_bullied_electronic_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_bullied_electronic_ucl": { + "id": "pct_bullied_electronic_ucl", + "short_name": "Electronically bullied - upper 95% CI", + "long_name": "YRBSS: Were electronically bullied - upper bound of 95% confidence interval", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H25", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who were electronically bullied.", + "long_description": "Upper bound of the 95% confidence interval for pct_bullied_electronic. Weighted percentage of U.S. high school students who were electronically bullied, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Unintentional Injuries and Violence; YRBSS question code: H25). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_bullied_electronic_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_bullied_electronic_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_bullied_electronic_suppressed": { + "id": "pct_bullied_electronic_suppressed", + "short_name": "Electronically bullied - suppressed flag", + "long_name": "YRBSS: Were electronically bullied - suppressed flag", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H25", + "short_description": "1 if the estimate for 'pct_bullied_electronic' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_bullied_electronic (with its CI) was set to 0; 0 otherwise. Distinct from pct_bullied_electronic_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_bullied_electronic_not_asked": { + "id": "pct_bullied_electronic_not_asked", + "short_name": "Electronically bullied - not-asked flag", + "long_name": "YRBSS: Were electronically bullied - not-asked flag", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H25", + "short_description": "1 if 'pct_bullied_electronic' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Were electronically bullied' was not part of the YRBSS survey for this geography and year, so pct_bullied_electronic (with its CI) was set to 0; 0 otherwise. Distinct from pct_bullied_electronic_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_considered_suicide": { + "id": "pct_considered_suicide", + "short_name": "Seriously considered suicide", + "long_name": "YRBSS: Seriously considered attempting suicide (Unintentional Injuries and Violence)", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H27", + "short_description": "Percent of high school students who seriously considered attempting suicide.", + "long_description": "Weighted percentage of U.S. high school students who seriously considered attempting suicide, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Unintentional Injuries and Violence; YRBSS question code: H27). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_considered_suicide_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_considered_suicide_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_considered_suicide_lcl": { + "id": "pct_considered_suicide_lcl", + "short_name": "Seriously considered suicide - lower 95% CI", + "long_name": "YRBSS: Seriously considered attempting suicide - lower bound of 95% confidence interval", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H27", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who seriously considered attempting suicide.", + "long_description": "Lower bound of the 95% confidence interval for pct_considered_suicide. Weighted percentage of U.S. high school students who seriously considered attempting suicide, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Unintentional Injuries and Violence; YRBSS question code: H27). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_considered_suicide_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_considered_suicide_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_considered_suicide_ucl": { + "id": "pct_considered_suicide_ucl", + "short_name": "Seriously considered suicide - upper 95% CI", + "long_name": "YRBSS: Seriously considered attempting suicide - upper bound of 95% confidence interval", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H27", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who seriously considered attempting suicide.", + "long_description": "Upper bound of the 95% confidence interval for pct_considered_suicide. Weighted percentage of U.S. high school students who seriously considered attempting suicide, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Unintentional Injuries and Violence; YRBSS question code: H27). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_considered_suicide_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_considered_suicide_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_considered_suicide_suppressed": { + "id": "pct_considered_suicide_suppressed", + "short_name": "Seriously considered suicide - suppressed flag", + "long_name": "YRBSS: Seriously considered attempting suicide - suppressed flag", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H27", + "short_description": "1 if the estimate for 'pct_considered_suicide' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_considered_suicide (with its CI) was set to 0; 0 otherwise. Distinct from pct_considered_suicide_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_considered_suicide_not_asked": { + "id": "pct_considered_suicide_not_asked", + "short_name": "Seriously considered suicide - not-asked flag", + "long_name": "YRBSS: Seriously considered attempting suicide - not-asked flag", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H27", + "short_description": "1 if 'pct_considered_suicide' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Seriously considered attempting suicide' was not part of the YRBSS survey for this geography and year, so pct_considered_suicide (with its CI) was set to 0; 0 otherwise. Distinct from pct_considered_suicide_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_planned_suicide": { + "id": "pct_planned_suicide", + "short_name": "Made a suicide plan", + "long_name": "YRBSS: Made a plan about how they would attempt suicide (Unintentional Injuries and Violence)", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H28", + "short_description": "Percent of high school students who made a plan about how they would attempt suicide.", + "long_description": "Weighted percentage of U.S. high school students who made a plan about how they would attempt suicide, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Unintentional Injuries and Violence; YRBSS question code: H28). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_planned_suicide_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_planned_suicide_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_planned_suicide_lcl": { + "id": "pct_planned_suicide_lcl", + "short_name": "Made a suicide plan - lower 95% CI", + "long_name": "YRBSS: Made a plan about how they would attempt suicide - lower bound of 95% confidence interval", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H28", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who made a plan about how they would attempt suicide.", + "long_description": "Lower bound of the 95% confidence interval for pct_planned_suicide. Weighted percentage of U.S. high school students who made a plan about how they would attempt suicide, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Unintentional Injuries and Violence; YRBSS question code: H28). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_planned_suicide_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_planned_suicide_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_planned_suicide_ucl": { + "id": "pct_planned_suicide_ucl", + "short_name": "Made a suicide plan - upper 95% CI", + "long_name": "YRBSS: Made a plan about how they would attempt suicide - upper bound of 95% confidence interval", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H28", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who made a plan about how they would attempt suicide.", + "long_description": "Upper bound of the 95% confidence interval for pct_planned_suicide. Weighted percentage of U.S. high school students who made a plan about how they would attempt suicide, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Unintentional Injuries and Violence; YRBSS question code: H28). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_planned_suicide_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_planned_suicide_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_planned_suicide_suppressed": { + "id": "pct_planned_suicide_suppressed", + "short_name": "Made a suicide plan - suppressed flag", + "long_name": "YRBSS: Made a plan about how they would attempt suicide - suppressed flag", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H28", + "short_description": "1 if the estimate for 'pct_planned_suicide' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_planned_suicide (with its CI) was set to 0; 0 otherwise. Distinct from pct_planned_suicide_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_planned_suicide_not_asked": { + "id": "pct_planned_suicide_not_asked", + "short_name": "Made a suicide plan - not-asked flag", + "long_name": "YRBSS: Made a plan about how they would attempt suicide - not-asked flag", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H28", + "short_description": "1 if 'pct_planned_suicide' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Made a plan about how they would attempt suicide' was not part of the YRBSS survey for this geography and year, so pct_planned_suicide (with its CI) was set to 0; 0 otherwise. Distinct from pct_planned_suicide_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_attempted_suicide": { + "id": "pct_attempted_suicide", + "short_name": "Attempted suicide", + "long_name": "YRBSS: Actually attempted suicide (Unintentional Injuries and Violence)", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H29", + "short_description": "Percent of high school students who actually attempted suicide.", + "long_description": "Weighted percentage of U.S. high school students who actually attempted suicide, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Unintentional Injuries and Violence; YRBSS question code: H29). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_attempted_suicide_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_attempted_suicide_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_attempted_suicide_lcl": { + "id": "pct_attempted_suicide_lcl", + "short_name": "Attempted suicide - lower 95% CI", + "long_name": "YRBSS: Actually attempted suicide - lower bound of 95% confidence interval", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H29", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who actually attempted suicide.", + "long_description": "Lower bound of the 95% confidence interval for pct_attempted_suicide. Weighted percentage of U.S. high school students who actually attempted suicide, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Unintentional Injuries and Violence; YRBSS question code: H29). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_attempted_suicide_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_attempted_suicide_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_attempted_suicide_ucl": { + "id": "pct_attempted_suicide_ucl", + "short_name": "Attempted suicide - upper 95% CI", + "long_name": "YRBSS: Actually attempted suicide - upper bound of 95% confidence interval", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H29", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who actually attempted suicide.", + "long_description": "Upper bound of the 95% confidence interval for pct_attempted_suicide. Weighted percentage of U.S. high school students who actually attempted suicide, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Unintentional Injuries and Violence; YRBSS question code: H29). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_attempted_suicide_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_attempted_suicide_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_attempted_suicide_suppressed": { + "id": "pct_attempted_suicide_suppressed", + "short_name": "Attempted suicide - suppressed flag", + "long_name": "YRBSS: Actually attempted suicide - suppressed flag", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H29", + "short_description": "1 if the estimate for 'pct_attempted_suicide' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_attempted_suicide (with its CI) was set to 0; 0 otherwise. Distinct from pct_attempted_suicide_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_attempted_suicide_not_asked": { + "id": "pct_attempted_suicide_not_asked", + "short_name": "Attempted suicide - not-asked flag", + "long_name": "YRBSS: Actually attempted suicide - not-asked flag", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H29", + "short_description": "1 if 'pct_attempted_suicide' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Actually attempted suicide' was not part of the YRBSS survey for this geography and year, so pct_attempted_suicide (with its CI) was set to 0; 0 otherwise. Distinct from pct_attempted_suicide_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_injurious_suicide_attempt": { + "id": "pct_injurious_suicide_attempt", + "short_name": "Injurious suicide attempt", + "long_name": "YRBSS: Had a suicide attempt that resulted in an injury, poisoning, or overdose that had to be treated by a doctor or nurse (Unintentional Injuries and Violence)", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H30", + "short_description": "Percent of high school students who had a suicide attempt that resulted in an injury, poisoning, or overdose that had to be treated by a doctor or nurse.", + "long_description": "Weighted percentage of U.S. high school students who had a suicide attempt that resulted in an injury, poisoning, or overdose that had to be treated by a doctor or nurse, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Unintentional Injuries and Violence; YRBSS question code: H30). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_injurious_suicide_attempt_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_injurious_suicide_attempt_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_injurious_suicide_attempt_lcl": { + "id": "pct_injurious_suicide_attempt_lcl", + "short_name": "Injurious suicide attempt - lower 95% CI", + "long_name": "YRBSS: Had a suicide attempt that resulted in an injury, poisoning, or overdose that had to be treated by a doctor or nurse - lower bound of 95% confidence interval", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H30", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who had a suicide attempt that resulted in an injury, poisoning, or overdose that had to be treated by a doctor or nurse.", + "long_description": "Lower bound of the 95% confidence interval for pct_injurious_suicide_attempt. Weighted percentage of U.S. high school students who had a suicide attempt that resulted in an injury, poisoning, or overdose that had to be treated by a doctor or nurse, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Unintentional Injuries and Violence; YRBSS question code: H30). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_injurious_suicide_attempt_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_injurious_suicide_attempt_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_injurious_suicide_attempt_ucl": { + "id": "pct_injurious_suicide_attempt_ucl", + "short_name": "Injurious suicide attempt - upper 95% CI", + "long_name": "YRBSS: Had a suicide attempt that resulted in an injury, poisoning, or overdose that had to be treated by a doctor or nurse - upper bound of 95% confidence interval", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H30", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who had a suicide attempt that resulted in an injury, poisoning, or overdose that had to be treated by a doctor or nurse.", + "long_description": "Upper bound of the 95% confidence interval for pct_injurious_suicide_attempt. Weighted percentage of U.S. high school students who had a suicide attempt that resulted in an injury, poisoning, or overdose that had to be treated by a doctor or nurse, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Unintentional Injuries and Violence; YRBSS question code: H30). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_injurious_suicide_attempt_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_injurious_suicide_attempt_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_injurious_suicide_attempt_suppressed": { + "id": "pct_injurious_suicide_attempt_suppressed", + "short_name": "Injurious suicide attempt - suppressed flag", + "long_name": "YRBSS: Had a suicide attempt that resulted in an injury, poisoning, or overdose that had to be treated by a doctor or nurse - suppressed flag", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H30", + "short_description": "1 if the estimate for 'pct_injurious_suicide_attempt' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_injurious_suicide_attempt (with its CI) was set to 0; 0 otherwise. Distinct from pct_injurious_suicide_attempt_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_injurious_suicide_attempt_not_asked": { + "id": "pct_injurious_suicide_attempt_not_asked", + "short_name": "Injurious suicide attempt - not-asked flag", + "long_name": "YRBSS: Had a suicide attempt that resulted in an injury, poisoning, or overdose that had to be treated by a doctor or nurse - not-asked flag", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H30", + "short_description": "1 if 'pct_injurious_suicide_attempt' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Had a suicide attempt that resulted in an injury, poisoning, or overdose that had to be treated by a doctor or nurse' was not part of the YRBSS survey for this geography and year, so pct_injurious_suicide_attempt (with its CI) was set to 0; 0 otherwise. Distinct from pct_injurious_suicide_attempt_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_no_seatbelt": { + "id": "pct_no_seatbelt", + "short_name": "Did not always wear a seat belt", + "long_name": "YRBSS: Did not always wear a seat belt (Unintentional Injuries and Violence)", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H8", + "short_description": "Percent of high school students who did not always wear a seat belt.", + "long_description": "Weighted percentage of U.S. high school students who did not always wear a seat belt, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Unintentional Injuries and Violence; YRBSS question code: H8). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_no_seatbelt_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_no_seatbelt_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_no_seatbelt_lcl": { + "id": "pct_no_seatbelt_lcl", + "short_name": "Did not always wear a seat belt - lower 95% CI", + "long_name": "YRBSS: Did not always wear a seat belt - lower bound of 95% confidence interval", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H8", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who did not always wear a seat belt.", + "long_description": "Lower bound of the 95% confidence interval for pct_no_seatbelt. Weighted percentage of U.S. high school students who did not always wear a seat belt, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Unintentional Injuries and Violence; YRBSS question code: H8). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_no_seatbelt_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_no_seatbelt_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_no_seatbelt_ucl": { + "id": "pct_no_seatbelt_ucl", + "short_name": "Did not always wear a seat belt - upper 95% CI", + "long_name": "YRBSS: Did not always wear a seat belt - upper bound of 95% confidence interval", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H8", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who did not always wear a seat belt.", + "long_description": "Upper bound of the 95% confidence interval for pct_no_seatbelt. Weighted percentage of U.S. high school students who did not always wear a seat belt, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Unintentional Injuries and Violence; YRBSS question code: H8). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_no_seatbelt_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_no_seatbelt_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_no_seatbelt_suppressed": { + "id": "pct_no_seatbelt_suppressed", + "short_name": "Did not always wear a seat belt - suppressed flag", + "long_name": "YRBSS: Did not always wear a seat belt - suppressed flag", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H8", + "short_description": "1 if the estimate for 'pct_no_seatbelt' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_no_seatbelt (with its CI) was set to 0; 0 otherwise. Distinct from pct_no_seatbelt_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_no_seatbelt_not_asked": { + "id": "pct_no_seatbelt_not_asked", + "short_name": "Did not always wear a seat belt - not-asked flag", + "long_name": "YRBSS: Did not always wear a seat belt - not-asked flag", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H8", + "short_description": "1 if 'pct_no_seatbelt' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Did not always wear a seat belt' was not part of the YRBSS survey for this geography and year, so pct_no_seatbelt (with its CI) was set to 0; 0 otherwise. Distinct from pct_no_seatbelt_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_rode_drinking_driver": { + "id": "pct_rode_drinking_driver", + "short_name": "Rode with a drinking driver", + "long_name": "YRBSS: Rode with a driver who had been drinking alcohol (Unintentional Injuries and Violence)", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H9", + "short_description": "Percent of high school students who rode with a driver who had been drinking alcohol.", + "long_description": "Weighted percentage of U.S. high school students who rode with a driver who had been drinking alcohol, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Unintentional Injuries and Violence; YRBSS question code: H9). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_rode_drinking_driver_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_rode_drinking_driver_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_rode_drinking_driver_lcl": { + "id": "pct_rode_drinking_driver_lcl", + "short_name": "Rode with a drinking driver - lower 95% CI", + "long_name": "YRBSS: Rode with a driver who had been drinking alcohol - lower bound of 95% confidence interval", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H9", + "short_description": "Lower bound of the 95% confidence interval for the percent of high school students who rode with a driver who had been drinking alcohol.", + "long_description": "Lower bound of the 95% confidence interval for pct_rode_drinking_driver. Weighted percentage of U.S. high school students who rode with a driver who had been drinking alcohol, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Unintentional Injuries and Violence; YRBSS question code: H9). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_rode_drinking_driver_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_rode_drinking_driver_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_rode_drinking_driver_ucl": { + "id": "pct_rode_drinking_driver_ucl", + "short_name": "Rode with a drinking driver - upper 95% CI", + "long_name": "YRBSS: Rode with a driver who had been drinking alcohol - upper bound of 95% confidence interval", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H9", + "short_description": "Upper bound of the 95% confidence interval for the percent of high school students who rode with a driver who had been drinking alcohol.", + "long_description": "Upper bound of the 95% confidence interval for pct_rode_drinking_driver. Weighted percentage of U.S. high school students who rode with a driver who had been drinking alcohol, from the CDC Youth Risk Behavior Surveillance System (YRBSS) (topic: Unintentional Injuries and Violence; YRBSS question code: H9). Estimates are reported overall and stratified (separately) by sex, race/ethnicity, and grade; grade is mapped to approximate modal ages (9th=14, 10th=15, 11th=16, 12th=17). Missing estimates are set to 0 and flagged: pct_rode_drinking_driver_suppressed = 1 marks values CDC suppressed (e.g., small sample size), and pct_rode_drinking_driver_not_asked = 1 marks geography-years in which the question was not asked. Note: New York state estimates exclude New York City.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_rode_drinking_driver_suppressed": { + "id": "pct_rode_drinking_driver_suppressed", + "short_name": "Rode with a drinking driver - suppressed flag", + "long_name": "YRBSS: Rode with a driver who had been drinking alcohol - suppressed flag", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H9", + "short_description": "1 if the estimate for 'pct_rode_drinking_driver' was suppressed by CDC and set to 0; 0 otherwise.", + "long_description": "Flag indicating CDC suppression. 1 means the question was asked for this geography and year but CDC suppressed the estimate (e.g., insufficient sample size), and pct_rode_drinking_driver (with its CI) was set to 0; 0 otherwise. Distinct from pct_rode_drinking_driver_not_asked, which marks geography-years where the question was not asked at all.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "pct_rode_drinking_driver_not_asked": { + "id": "pct_rode_drinking_driver_not_asked", + "short_name": "Rode with a drinking driver - not-asked flag", + "long_name": "YRBSS: Rode with a driver who had been drinking alcohol - not-asked flag", + "category": "injury", + "topic": "Unintentional Injuries and Violence", + "question_code": "H9", + "short_description": "1 if 'pct_rode_drinking_driver' was not asked for this geography and year and set to 0; 0 otherwise.", + "long_description": "Flag indicating the question was not asked. 1 means 'Rode with a driver who had been drinking alcohol' was not part of the YRBSS survey for this geography and year, so pct_rode_drinking_driver (with its CI) was set to 0; 0 otherwise. Distinct from pct_rode_drinking_driver_suppressed, which marks estimates CDC suppressed.", + "measure_type": "Indicator", + "unit": "0/1 flag", + "time_resolution": "Year", + "sources": [ + { + "id": "yrbss" + } + ] + }, + "_sources": { + "yrbss": { + "name": "CDC Youth Risk Behavior Surveillance System (YRBSS)", + "url": "https://yrbs-explorer.services.cdc.gov/", + "date_accessed": 2025, + "organization": "Centers for Disease Control and Prevention", + "organization_url": "https://www.cdc.gov/yrbs/", + "description": "The Youth Risk Behavior Surveillance System (YRBSS) is a set of school-based surveys conducted by the CDC that monitor health-related behaviors among U.S. high school students. The biennial national, state, and local surveys provide weighted prevalence estimates of behaviors contributing to the leading causes of death and disability. Data were accessed via the YRBS Explorer API. Estimates are provided overall and stratified (separately, not crossed) by sex, race/ethnicity, and grade. Estimates that CDC suppressed (e.g., small sample sizes) are omitted rather than imputed. State estimates are available only for jurisdictions that share data with CDC; Minnesota, Oregon, and Washington are not included, and New York state excludes New York City.", + "restrictions": "Public domain. Suggested attribution: Centers for Disease Control and Prevention (CDC). Youth Risk Behavior Surveillance System (YRBSS)." + } + } +} diff --git a/data/yrbss/process.json b/data/yrbss/process.json new file mode 100644 index 00000000..affdd8c8 --- /dev/null +++ b/data/yrbss/process.json @@ -0,0 +1,11 @@ +{ + "raw_state": { + "sig": { + "years": [1991, 1993, 1995, 1997, 1999, 2001, 2003, 2005, 2007, 2009, 2011, 2013, 2015, 2017, 2019, 2021, 2023], + "questions": ["H10", "H11", "H12", "H13", "H14", "H15", "H24", "H25", "H27", "H28", "H29", "H30", "H31", "H33", "H35", "H36", "H38", "H42", "H43", "H46", "H47", "H48", "H49", "H50", "H51", "H52", "H53", "H54", "H55", "H75", "H76", "H77", "H78", "H79", "H8", "H80", "H84", "H85", "H86", "H9", "QNBK7DAY", "QNCLOSE2PEOPLE", "QNCURRENTOPIOID", "QNDLYPE", "QNFR0", "QNHALLUCDRUG", "QNILLICT", "QNMUSCLESTRENGTH", "QNPA0DAY", "QNPA7DAY", "QNVEG0"] + }, + "hash": "d800b478743301348913f50443e07b30" + }, + "type": "source", + "name": "." +} diff --git a/data/yrbss/raw/yrbss_chartdata.csv.gz b/data/yrbss/raw/yrbss_chartdata.csv.gz new file mode 100644 index 00000000..cb7ca44e Binary files /dev/null and b/data/yrbss/raw/yrbss_chartdata.csv.gz differ diff --git a/data/yrbss/standard/data_age.csv.gz b/data/yrbss/standard/data_age.csv.gz new file mode 100644 index 00000000..afa0a9fb Binary files /dev/null and b/data/yrbss/standard/data_age.csv.gz differ diff --git a/data/yrbss/standard/data_age_ethnicity.csv.gz b/data/yrbss/standard/data_age_ethnicity.csv.gz new file mode 100644 index 00000000..e2bb5ac6 Binary files /dev/null and b/data/yrbss/standard/data_age_ethnicity.csv.gz differ diff --git a/data/yrbss/standard/data_age_sex.csv.gz b/data/yrbss/standard/data_age_sex.csv.gz new file mode 100644 index 00000000..ce043153 Binary files /dev/null and b/data/yrbss/standard/data_age_sex.csv.gz differ